From: Wolfgang (Blub) Bumiller Date: Sat, 18 Aug 2012 12:55:37 +0000 (+0200) Subject: get rid of additional trailing \n on parseerror X-Git-Tag: 0.1-rc1~225 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=267bb7d41e99a70ec27ca9ce810c8fbb4304e3d4;p=xonotic%2Fgmqcc.git get rid of additional trailing \n on parseerror --- diff --git a/parser.c b/parser.c index fdf6bce..769f0da 100644 --- a/parser.c +++ b/parser.c @@ -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 */