From 2e227d54068e3eccae12d51b4859f3d1ada251db Mon Sep 17 00:00:00 2001 From: cuz Date: Tue, 10 Oct 2000 19:35:32 +0000 Subject: [PATCH] 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 --- src/cc65/declare.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;