mirror of
https://github.com/cc65/cc65.git
synced 2025-01-14 00:32:08 +00:00
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
This commit is contained in:
parent
84537ae937
commit
2e227d5406
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user