diff options
Diffstat (limited to 'xkbcomp/action.c')
-rw-r--r-- | xkbcomp/action.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xkbcomp/action.c b/xkbcomp/action.c index 3b82e647e..4623c0caf 100644 --- a/xkbcomp/action.c +++ b/xkbcomp/action.c @@ -41,7 +41,7 @@ static ExprDef constFalse; /***====================================================================***/ static Bool -stringToAction(char *str, unsigned *type_rtrn) +stringToAction(const char *str, unsigned *type_rtrn) { if (str == NULL) return False; @@ -134,7 +134,7 @@ stringToAction(char *str, unsigned *type_rtrn) } static Bool -stringToField(char *str, unsigned *field_rtrn) +stringToField(const char *str, unsigned *field_rtrn) { if (str == NULL) @@ -1397,8 +1397,8 @@ HandleActionDef(ExprDef * def, int SetActionField(XkbDescPtr xkb, - char *elem, - char *field, + const char *elem, + const char *field, ExprDef * array_ndx, ExprDef * value, ActionInfo ** info_rtrn) { ActionInfo *new, *old; |