]> git.sur5r.net Git - cc65/blobdiff - src/cc65/locals.c
Formatting fixes.
[cc65] / src / cc65 / locals.c
index d3d73d1979936e8215e200251652a37b38912637..36afb6223897b7be1eaad7e072ba659fd98555f1 100644 (file)
@@ -272,8 +272,9 @@ static void ParseAutoDecl (Declaration* Decl)
             Sym->Flags |= SC_REF;
 
             /* Make note of auto variables initialized in current block.
-               We abuse the Collection somewhat by using it to store line
-               numbers. */
+            ** We abuse the Collection somewhat by using it to store line
+            ** numbers.
+            */
             CollReplace (&CurrentFunc->LocalsBlockStack, (void *)(long)GetCurrentLine (),
                 CollCount (&CurrentFunc->LocalsBlockStack) - 1);