goto.c warning fix for implicit truncation
This commit is contained in:
parent
392e6e10fc
commit
1a5fa6dc51
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ void GotoStatement (void)
|
|||
ConsumeLBrack ();
|
||||
|
||||
if (CurTok.Tok == TOK_ICONST) {
|
||||
val = CurTok.IVal;
|
||||
val = (unsigned char)CurTok.IVal;
|
||||
NextToken ();
|
||||
|
||||
if (CPUIsets[CPU] & CPU_ISET_65SC02) {
|
||||
|
|
Loading…
Add table
Reference in a new issue