diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-02-15 23:14:40 -0800 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2016-10-19 21:40:26 +0200 |
commit | 6417045168d4ea833c3d340c885932befd25adad (patch) | |
tree | f5b36dd017f485a3038ec90e81a1172e3b8f34a6 /nx-X11/lib | |
parent | 5608b67f2bfafcee9ac82434aa4fa7e532ffb472 (diff) | |
download | nx-libs-6417045168d4ea833c3d340c885932befd25adad.tar.gz nx-libs-6417045168d4ea833c3d340c885932befd25adad.tar.bz2 nx-libs-6417045168d4ea833c3d340c885932befd25adad.zip |
XRebindKeysym: Drop unnecessary const-removing cast
C89 defines memcpy as taking a const void *, so casting from
const unsigned char * to char * simply angers gcc for no benefit:
KeyBind.c:1017:24: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Backported-to-NX-by: Ulrich Sibiller <uli42@gmx.de>
Diffstat (limited to 'nx-X11/lib')
-rw-r--r-- | nx-X11/lib/X11/KeyBind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nx-X11/lib/X11/KeyBind.c b/nx-X11/lib/X11/KeyBind.c index a50a7b2cc..d473f907c 100644 --- a/nx-X11/lib/X11/KeyBind.c +++ b/nx-X11/lib/X11/KeyBind.c @@ -1014,7 +1014,7 @@ XRebindKeysym ( dpy->key_bindings = p; dpy->free_funcs->key_bindings = _XFreeKeyBindings; p->next = tmp; /* chain onto list */ - memcpy (p->string, (char *) str, nbytes); + memcpy (p->string, str, nbytes); p->len = nbytes; memcpy ((char *) p->modifiers, (char *) mlist, nb); p->key = keysym; |