diff options
author | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2004-03-17 20:32:47 +0000 |
---|---|---|
committer | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2004-03-17 20:32:47 +0000 |
commit | 6a53ab3c0c10aff500f9ba232f0938e11d102dc7 (patch) | |
tree | 6e6b4b9d3b774860b2fb6794ba2286655aeb4ef6 | |
parent | 5784d4912c94ae1e9a5122a433b471f47e3266f4 (diff) |
merge with XORG-RELEASE-1 (tag XORG-CYGWIN-LAST-MERGE)CYGWIN-RELEASE-1-MERGECYGWIN-PRE-6_8_0-MERGECYGWIN-HEAD-MERGECYGWIN-HEAD-LAST-MERGECYGWIN-6_8_2-MERGECYGWIN-6_8_1-MERGECYGWIN-6_8_0-MERGE
-rw-r--r-- | xev.c | 4 | ||||
-rw-r--r-- | xev.man | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -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 @@ -1,6 +1,6 @@ .\" $XConsortium: xev.man,v 1.10 94/04/17 20:45:20 gildea Exp $ .\" -.\" $XFree86: xc/programs/xev/xev.man,v 1.4 2003/05/24 15:49:02 herrb Exp $ +.\" $XFree86: xc/programs/xev/xev.man,v 1.3 2001/01/27 18:21:11 dawes Exp $ .\" .TH XEV 1 __xorgversion__ .SH NAME |