diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-09-28 18:17:15 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-11-16 23:01:35 -0800 |
commit | 7b6123644fe23c2eb9816cf00729253b2dd53b23 (patch) | |
tree | 15086491143cafd7973ecebc0773d75413bdc06f /include | |
parent | 0c2c504819b8788075115f848343bd45a3bb6605 (diff) |
Add const attributes to fix gcc -Wwrite-strings warnings
Does not fix all of them, as some affect the API and thus need more analysis.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/X11/extensions/XKBfile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/X11/extensions/XKBfile.h b/include/X11/extensions/XKBfile.h index 6d5e910..0d2f52b 100644 --- a/include/X11/extensions/XKBfile.h +++ b/include/X11/extensions/XKBfile.h @@ -83,9 +83,9 @@ typedef void (*XkbFileAddOnFunc)( #define _XkbErrXReqFailure 25 #define _XkbErrBadImplementation 26 -extern char * _XkbErrMessages[]; +extern const char * _XkbErrMessages[]; extern unsigned _XkbErrCode; -extern char * _XkbErrLocation; +extern const char * _XkbErrLocation; extern unsigned _XkbErrData; /***====================================================================***/ |