get rid of additional trailing \n on parseerror

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-18 14:55:37 +02:00
parent 46b4eb1f46
commit 267bb7d41e

View file

@ -60,8 +60,6 @@ void parseerror(parser_t *parser, const char *fmt, ...)
va_start(ap, fmt);
vprintmsg(LVL_ERROR, parser->lex->tok->ctx.file, parser->lex->tok->ctx.line, "parse error", fmt, ap);
va_end(ap);
printf("\n");
}
/* returns true if it counts as an error */