From 9e0ab14cfe0bc107e99d1867792b7c127b1465a8 Mon Sep 17 00:00:00 2001 From: Bas Wassink Date: Sun, 24 Mar 2019 23:05:11 +0100 Subject: [PATCH] Restore src/cc65/locals.c:278 to its orignal state --- src/cc65/locals.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/cc65/locals.c b/src/cc65/locals.c index e2e71e96c..d0aab7f9c 100644 --- a/src/cc65/locals.c +++ b/src/cc65/locals.c @@ -275,9 +275,8 @@ static void ParseAutoDecl (Declaration* Decl) ** We abuse the Collection somewhat by using it to store line ** numbers. */ - CollReplace (&CurrentFunc->LocalsBlockStack, - (void *)(long)GetCurrentLine (), - CollCount (&CurrentFunc->LocalsBlockStack) - 1); + CollReplace (&CurrentFunc->LocalsBlockStack, (void *)(long)GetCurrentLine (), + CollCount (&CurrentFunc->LocalsBlockStack) - 1); } else { /* Non-initialized local variable. Just keep track of -- 2.39.2