diff options
author | Matthias-Christian Ott <ott@enolink.de> | 2008-06-04 19:52:59 +0200 |
---|---|---|
committer | Matthias-Christian Ott <ott@enolink.de> | 2008-06-04 19:52:59 +0200 |
commit | 50b4785f2650a741f827f4be17ecc18844a1b175 (patch) | |
tree | 74ebabb502bfa5f11ad5efb8791cf8049181c5c7 /std.c | |
parent | c61b34e8e1883faba38f94b0c6775a47b1267e6f (diff) | |
download | st-50b4785f2650a741f827f4be17ecc18844a1b175.tar.gz st-50b4785f2650a741f827f4be17ecc18844a1b175.zip |
terminate error message with newline
Diffstat (limited to 'std.c')
-rw-r--r-- | std.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -166,7 +166,7 @@ parseesc(void) { | |||
166 | s |= QuestionMark; | 166 | s |= QuestionMark; |
167 | else if(c == ';') { | 167 | else if(c == ';') { |
168 | if(!(s & Digit)) | 168 | if(!(s & Digit)) |
169 | eprint("syntax error"); | 169 | eprint("syntax error\n"); |
170 | s &= ~Digit; | 170 | s &= ~Digit; |
171 | j++; | 171 | j++; |
172 | } | 172 | } |