summaryrefslogtreecommitdiff
path: root/include/X11
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-10-20 12:05:15 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-10-28 20:29:33 -0700
commit3b460259d0d21f9876cacd7e1f305d77b76724f7 (patch)
tree9ad57ca897b9d14436f338663bf0fcd852262eb1 /include/X11
parent390acfe5bb88cdab509b5eaae4041f265e969d2b (diff)
downloadxorg-lib-libxkbfile-3b460259d0d21f9876cacd7e1f305d77b76724f7.tar.gz
Constify atom name argument to XkbInternAtom
Matches XInternAtom, which it wraps, and quiets a bunch of const warnings in xkbcomp. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Ran Benita <ran234@gmail.com>
Diffstat (limited to 'include/X11')
-rw-r--r--include/X11/extensions/XKBfile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/X11/extensions/XKBfile.h b/include/X11/extensions/XKBfile.h
index a59b16a..1455463 100644
--- a/include/X11/extensions/XKBfile.h
+++ b/include/X11/extensions/XKBfile.h
@@ -249,7 +249,7 @@ extern char * XkbAtomGetString(
extern Atom XkbInternAtom(
Display * /* dpy */,
- char * /* name */,
+ const char */* name */,
Bool /* onlyIfExists */
);