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 /xkbparse.y | |
parent | e8ffa513a109209849b11a3c608356cc28314a8e (diff) |
Fixed a bunch of const correctness bugs.
Diffstat (limited to 'xkbparse.y')
-rw-r--r-- | xkbparse.y | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -779,7 +779,7 @@ MapName : STRING { $$= scanStr; scanStr= NULL; } ; %% void -yyerror(char *s) +yyerror(const char *s) { if (warningLevel>0) { (void)fprintf(stderr,"%s: line %d of %s\n",s,lineNum, |