From 6ad79067ac0f0172ea4a7b373de92affe07ec575 Mon Sep 17 00:00:00 2001 From: laubzega Date: Fri, 28 Sep 2018 22:17:49 -0700 Subject: [PATCH] Fix a warning. --- src/cc65/stmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc65/stmt.c b/src/cc65/stmt.c index 0c891c386..a9552ba96 100644 --- a/src/cc65/stmt.c +++ b/src/cc65/stmt.c @@ -513,7 +513,7 @@ static int CompoundStatement (void) /* Remember the stack at block entry */ int OldStack = StackPtr; - long OldBlockStackSize = CollCount (&CurrentFunc->LocalsBlockStack); + unsigned OldBlockStackSize = CollCount (&CurrentFunc->LocalsBlockStack); /* Enter a new lexical level */ EnterBlockLevel (); -- 2.39.5