From a4c7d48eb5f47a72a63dfcc628d00202608f9ba1 Mon Sep 17 00:00:00 2001 From: ehouse Date: Sat, 18 Feb 2006 06:36:39 +0000 Subject: [PATCH] make XP_UCHAR signed to avoid warnings calling string.h funcs --- xwords4/linux/xptypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwords4/linux/xptypes.h b/xwords4/linux/xptypes.h index 1fcff046f..d307e6f37 100644 --- a/xwords4/linux/xptypes.h +++ b/xwords4/linux/xptypes.h @@ -38,7 +38,7 @@ typedef unsigned char XP_U8; typedef signed char XP_S8; -typedef unsigned char XP_UCHAR; +typedef char XP_UCHAR; typedef unsigned short XP_U16; typedef signed short XP_S16;