1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-30 08:57:49 +00:00

Fix a warning.

This commit is contained in:
laubzega 2018-09-28 22:17:49 -07:00 committed by Oliver Schmidt
parent c797b3b376
commit 6ad79067ac

View File

@ -513,7 +513,7 @@ static int CompoundStatement (void)
/* Remember the stack at block entry */ /* Remember the stack at block entry */
int OldStack = StackPtr; int OldStack = StackPtr;
long OldBlockStackSize = CollCount (&CurrentFunc->LocalsBlockStack); unsigned OldBlockStackSize = CollCount (&CurrentFunc->LocalsBlockStack);
/* Enter a new lexical level */ /* Enter a new lexical level */
EnterBlockLevel (); EnterBlockLevel ();