Browse Source

terminate error message with newline

master
Matthias-Christian Ott 16 years ago
parent
commit
50b4785f26
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      std.c

+ 1
- 1
std.c View File

@ -166,7 +166,7 @@ parseesc(void) {
s |= QuestionMark;
else if(c == ';') {
if(!(s & Digit))
eprint("syntax error");
eprint("syntax error\n");
s &= ~Digit;
j++;
}


Loading…
Cancel
Save