diff options
author | Keith Packard <keithp@keithp.com> | 2013-11-15 05:28:47 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-01-12 10:14:49 -0800 |
commit | 6e51645b4796fc3a02206fefd416b84beb2fcdf7 (patch) | |
tree | 3185d4a25eb59b1af45649cc8353391d2afb2009 /include/xkbrules.h | |
parent | abce3206cbc82f632abae5344e0ce46622e00f24 (diff) |
xkb: Clean up warnings
Add const to lots of strings.
Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'include/xkbrules.h')
-rw-r--r-- | include/xkbrules.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xkbrules.h b/include/xkbrules.h index 5b69d0db2..956eade0b 100644 --- a/include/xkbrules.h +++ b/include/xkbrules.h @@ -64,7 +64,7 @@ typedef struct _XkbRF_Rule { typedef struct _XkbRF_Group { int number; const char *name; - const char *words; + char *words; } XkbRF_GroupRec, *XkbRF_GroupPtr; #define XkbRF_PendingMatch (1L<<1) |