terminate error message with newline

This commit is contained in:
Matthias-Christian Ott 2008-06-04 19:52:59 +02:00
parent 75b1565fdc
commit 538a0c4431
1 changed files with 1 additions and 1 deletions

2
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++;
}