]> git.sur5r.net Git - cc65/commitdiff
Fix style
authorJT <jeremiah.turner@gmail.com>
Mon, 20 Jul 2015 23:12:30 +0000 (19:12 -0400)
committerJT <jeremiah.turner@gmail.com>
Mon, 20 Jul 2015 23:12:30 +0000 (19:12 -0400)
src/ca65/scanner.c

index 9df28a8af61b00405be5b804d9e5b9a019f0328b..16e67ee8a2540029d7f42652c25bd93ddd1550fb 100644 (file)
@@ -1417,16 +1417,16 @@ CharAgain:
         case '\\':
             /* Line continuation? */
             if (LineCont) {
-                NextChar();
+                NextChar ();
                 /* Next char should be a LF, if not, will result in an error later */
                 if (C == '\n') {
                     /* Ignore the '\n' */
-                    NextChar();
+                    NextChar ();
                     goto Again;
                 }
                 else {
                     /* Make it clear what the problem is: */
-                    Error("EOL expected.");
+                    Error ("EOL expected.");
                 }
             }
             break;