From: cuz Date: Tue, 10 Oct 2000 19:35:32 +0000 (+0000) Subject: Declaring a char explicitly as signed was ignored and the default (unsigned) X-Git-Tag: V2.12.0~3176 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2e227d54068e3eccae12d51b4859f3d1ada251db;p=cc65 Declaring a char explicitly as signed was ignored and the default (unsigned) char type was used. git-svn-id: svn://svn.cc65.org/cc65/trunk@350 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/cc65/declare.c b/src/cc65/declare.c index e97cb4577..0a365db2c 100644 --- a/src/cc65/declare.c +++ b/src/cc65/declare.c @@ -375,7 +375,7 @@ static void ParseTypeSpec (DeclSpec* D, int Default) case TOK_CHAR: NextToken (); - D->Type[0] = T_CHAR; + D->Type[0] = T_SCHAR; D->Type[1] = T_END; break;