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 /xev.c | |
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
Diffstat (limited to 'xev.c')
-rw-r--r-- | xev.c | 4 |
1 files changed, 2 insertions, 2 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 |