diff options
author | Egbert Eich <eich@suse.de> | 2004-03-01 15:07:00 +0000 |
---|---|---|
committer | Egbert Eich <eich@suse.de> | 2004-03-01 15:07:00 +0000 |
commit | 112cd218cb626809fe6200268d9ba2314dcbbd3d (patch) | |
tree | fe2c1420359ea58c747e565172a19da5086648b7 | |
parent | 5784d4912c94ae1e9a5122a433b471f47e3266f4 (diff) |
3. Added missing parts to XKB to make XEVIE branch compile (Egbert Eich).XEVIE
2. Merged with XORG-CURRENT branch to obtain a bugfix (Egbert Eich).
1. First add of SUN's XIVIE extension (Stuart Kreitman).
-rw-r--r-- | xev.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -28,7 +28,7 @@ other dealings in this Software without prior written authorization from the X Consortium. */ -/* $XFree86: xc/programs/xev/xev.c,v 1.13 2003/10/24 20:38:17 tsi Exp $ */ +/* $XFree86: xc/programs/xev/xev.c,v 1.14 2004/02/07 04:33:07 dawes Exp $ */ /* * Author: Jim Fulton, MIT X Consortium @@ -85,8 +85,8 @@ dump (char *str, int len) printf("("); len--; while (len-- > 0) - printf("%02x ", *str++); - printf("%02x)", *str++); + printf("%02x ", (unsigned char) *str++); + printf("%02x)", (unsigned char) *str++); } static void |