Skip to content

Commit

Permalink
iASL: Fix suffix for preprocessor output file (.i)
Browse files Browse the repository at this point in the history
Had two trailing blanks in the suffix, causing problems on
some systems.
  • Loading branch information
acpibob committed Sep 18, 2015
1 parent 534deab commit 205528b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/compiler/asldefine.h
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@

/* filename suffixes for output files */

#define FILE_SUFFIX_PREPROC_USER "i "
#define FILE_SUFFIX_PREPROC_USER "i"
#define FILE_SUFFIX_PREPROCESSOR "pre"
#define FILE_SUFFIX_AML_CODE "aml"
#define FILE_SUFFIX_MAP "map"
Expand Down
2 changes: 1 addition & 1 deletion source/compiler/asltypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ typedef enum

/* filename suffixes for output files */

#define FILE_SUFFIX_PREPROC_USER "i "
#define FILE_SUFFIX_PREPROC_USER "i"
#define FILE_SUFFIX_PREPROCESSOR "pre"
#define FILE_SUFFIX_AML_CODE "aml"
#define FILE_SUFFIX_MAP "map"
Expand Down

0 comments on commit 205528b

Please sign in to comment.