1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-24 00:29:32 +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 '\\':
/* 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;