From 12b51ec0364dc31979232c77964bb464f2b32ec4 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Tue, 27 Jan 2004 21:54:06 +0000 Subject: [PATCH] Force aitInt8 to be signed - ANSI allows chars to be unsigned --- src/gdd/aitTypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gdd/aitTypes.h b/src/gdd/aitTypes.h index 8ba9f2ccf..b8484eb64 100644 --- a/src/gdd/aitTypes.h +++ b/src/gdd/aitTypes.h @@ -24,7 +24,7 @@ #include "shareLib.h" -typedef char aitInt8; +typedef signed char aitInt8; typedef unsigned char aitUint8; typedef short aitInt16; typedef unsigned short aitUint16;