diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2018-09-27 16:43:02 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2018-09-27 16:43:02 +0000 |
commit | 73d55968743da26d1ff63e9939f191d217aea206 (patch) | |
tree | ffb27de4d7c207dd7aeebd04b24e04f85d23b8dc /source/compiler/aslhex.c | |
parent | c6014c64fcfd099d0087da3509e8a623d2c30209 (diff) |
Notes
Diffstat (limited to 'source/compiler/aslhex.c')
-rw-r--r-- | source/compiler/aslhex.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/compiler/aslhex.c b/source/compiler/aslhex.c index c1e3c76193be..3e261627fb71 100644 --- a/source/compiler/aslhex.c +++ b/source/compiler/aslhex.c @@ -196,7 +196,7 @@ HxDoHexOutput ( void) { - switch (Gbl_HexOutputFlag) + switch (AslGbl_HexOutputFlag) { case HEX_OUTPUT_C: @@ -242,9 +242,9 @@ HxReadAmlOutputFile ( Actual = fread (Buffer, 1, HEX_TABLE_LINE_SIZE, - Gbl_Files[ASL_FILE_AML_OUTPUT].Handle); + AslGbl_Files[ASL_FILE_AML_OUTPUT].Handle); - if (ferror (Gbl_Files[ASL_FILE_AML_OUTPUT].Handle)) + if (ferror (AslGbl_Files[ASL_FILE_AML_OUTPUT].Handle)) { FlFileError (ASL_FILE_AML_OUTPUT, ASL_MSG_READ); AslAbort (); @@ -285,7 +285,7 @@ HxDoHexOutputC ( /* Obtain the file basename (filename with no extension) */ - FileBasename = FlGetFileBasename (Gbl_Files [ASL_FILE_HEX_OUTPUT].Filename); + FileBasename = FlGetFileBasename (AslGbl_Files [ASL_FILE_HEX_OUTPUT].Filename); /* Get AML size, seek back to start */ |