diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2004-02-23 20:35:40 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2004-02-23 20:35:40 +0000 |
commit | 47403c0b506c2dde081952ea9e771fb0270c69a0 (patch) | |
tree | fe2c1420359ea58c747e565172a19da5086648b7 | |
parent | 6c04e15469f547b18ccb393a0c740b7ac00132fb (diff) |
Import most of XFree86 4.4RC3. This import excludes files which have thexf86-4_3_99_903_special
new license. If we want to, later we can import 4.4RC3 again and pick
up the files that have the new license, but for now the vendor branch
is "pure."
-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 |