From f142ef61db87775ec406af270206b83974ce3a31 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 --- linux/xptypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/xptypes.h b/linux/xptypes.h index 1fcff046f..d307e6f37 100644 --- a/linux/xptypes.h +++ b/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;