1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-28 10:55:43 +00:00

Fix style

This commit is contained in:
JT 2015-07-20 19:12:30 -04:00
parent c3d083fe33
commit 10579d0421

View File

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