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 /keytypes.c | |
parent | e8ffa513a109209849b11a3c608356cc28314a8e (diff) |
Fixed a bunch of const correctness bugs.
Diffstat (limited to 'keytypes.c')
-rw-r--r-- | keytypes.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -258,7 +258,7 @@ KeyTypeInfo *old; } static Bool -ReportTypeBadWidth(char *type,int has,int needs) +ReportTypeBadWidth(const char *type, int has, int needs) { ERROR3("Key type \"%s\" has %d levels, must have %d\n",type,has,needs); ACTION("Illegal type definition ignored\n"); |