diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-10-20 12:05:15 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-10-28 20:29:33 -0700 |
commit | 3b460259d0d21f9876cacd7e1f305d77b76724f7 (patch) | |
tree | 9ad57ca897b9d14436f338663bf0fcd852262eb1 /include/X11/extensions/XKBfile.h | |
parent | 390acfe5bb88cdab509b5eaae4041f265e969d2b (diff) |
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/extensions/XKBfile.h')
-rw-r--r-- | include/X11/extensions/XKBfile.h | 2 |
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 */ ); |