diff options
Diffstat (limited to 'source/compiler/aslfileio.c')
-rw-r--r-- | source/compiler/aslfileio.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/compiler/aslfileio.c b/source/compiler/aslfileio.c index 4db97a67358aa..676eaf16835e2 100644 --- a/source/compiler/aslfileio.c +++ b/source/compiler/aslfileio.c @@ -70,6 +70,7 @@ FlFileError ( sprintf (MsgBuffer, "\"%s\" (%s) - %s", Gbl_Files[FileId].Filename, Gbl_Files[FileId].Description, strerror (errno)); + AslCommonError (ASL_ERROR, ErrorId, 0, 0, 0, 0, NULL, MsgBuffer); } @@ -269,7 +270,8 @@ FlPrintFile ( AslAbort (); } - if ((FileId == ASL_FILE_PREPROCESSOR) && Gbl_PreprocessorOutputFlag) + if ((FileId == ASL_FILE_PREPROCESSOR) && + Gbl_PreprocessorOutputFlag) { /* * Duplicate the output to the user preprocessor (.i) file, @@ -291,7 +293,6 @@ FlPrintFile ( AslAbort (); } } - } |