diff options
Diffstat (limited to 'source/common/adfile.c')
-rw-r--r-- | source/common/adfile.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/source/common/adfile.c b/source/common/adfile.c index 2caf59954a54..2c864d4bc096 100644 --- a/source/common/adfile.c +++ b/source/common/adfile.c @@ -100,7 +100,7 @@ AdGenerateFilename ( FilenameBuf[i] = 0; strcat (FilenameBuf, ACPI_TABLE_FILE_SUFFIX); - return FilenameBuf; + return (FilenameBuf); } @@ -183,7 +183,7 @@ AdWriteTable ( * RETURN: New filename containing the original base + the new suffix * * DESCRIPTION: Generate a new filename from the ASL source filename and a new - * extension. Used to create the *.LST, *.TXT, etc. files. + * extension. Used to create the *.LST, *.TXT, etc. files. * ******************************************************************************/ @@ -223,7 +223,7 @@ FlGenerateFilename ( strcat (NewFilename, Suffix); } - return NewFilename; + return (NewFilename); } @@ -332,5 +332,3 @@ FlSplitInputPathname ( *OutFilename = Filename; return (AE_OK); } - - |