summaryrefslogtreecommitdiff
path: root/keytypes.c
diff options
context:
space:
mode:
authorTilman Sauerbeck <tilman@code-monkey.de>2007-09-23 20:15:13 +0200
committerTilman Sauerbeck <tilman@code-monkey.de>2007-09-23 20:15:13 +0200
commit829cb75130d1edd88fa1d33e277f49167daedacf (patch)
tree1eac332bfee7048c57a0b15349dc70a6b821a2c1 /keytypes.c
parente8ffa513a109209849b11a3c608356cc28314a8e (diff)
downloadxorg-app-xkbcomp-829cb75130d1edd88fa1d33e277f49167daedacf.tar.gz
Fixed a bunch of const correctness bugs.
Diffstat (limited to 'keytypes.c')
-rw-r--r--keytypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keytypes.c b/keytypes.c
index e436136..b09345b 100644
--- a/keytypes.c
+++ b/keytypes.c
@@ -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");