diff options
author | Tilman Sauerbeck <tilman@code-monkey.de> | 2007-09-23 20:15:13 +0200 |
---|---|---|
committer | Tilman Sauerbeck <tilman@code-monkey.de> | 2007-09-23 20:15:13 +0200 |
commit | 829cb75130d1edd88fa1d33e277f49167daedacf (patch) | |
tree | 1eac332bfee7048c57a0b15349dc70a6b821a2c1 /xkbcomp.c | |
parent | e8ffa513a109209849b11a3c608356cc28314a8e (diff) |
Fixed a bunch of const correctness bugs.
Diffstat (limited to 'xkbcomp.c')
-rw-r--r-- | xkbcomp.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -76,7 +76,7 @@ #define INPUT_XKB 1 #define INPUT_XKM 2 -static char *fileTypeExt[] = { +static const char *fileTypeExt[] = { "XXX", "xkm", "h", @@ -721,9 +721,8 @@ Status status; } if (inputFile!=NULL) { if (uStringEqual(inputFile,"-")) { - static char *in= "stdin"; file= stdin; - inputFile= in; + inputFile= "stdin"; } else { file= fopen(inputFile,"r"); |