From e8d52af7bc61a43006860465e4e18285890d3cca Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Tue, 1 Apr 2008 15:54:01 +0000 Subject: [PATCH] Can't make epicsInt8 a 'signed char', it breaks too much stuff. This is a problem - on some archs char is signed, on others not. --- src/libCom/misc/epicsTypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libCom/misc/epicsTypes.h b/src/libCom/misc/epicsTypes.h index 87fb7a03a..c5aecd067 100644 --- a/src/libCom/misc/epicsTypes.h +++ b/src/libCom/misc/epicsTypes.h @@ -50,7 +50,7 @@ typedef enum { typedef int64_t epicsInt64; typedef uint64_t epicsUInt64; #else - typedef signed char epicsInt8; + typedef char epicsInt8; typedef unsigned char epicsUInt8; typedef short epicsInt16; typedef unsigned short epicsUInt16;