From: Dale Weiler Date: Sun, 28 Mar 2021 00:45:40 +0000 (-0400) Subject: fix bug #188 X-Git-Tag: xonotic-v0.8.5~6 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=47475bb455a5724e458752fac498aa0264e7690b;p=xonotic%2Fgmqcc.git fix bug #188 --- diff --git a/parser.cpp b/parser.cpp index ac28fd7..010296c 100644 --- a/parser.cpp +++ b/parser.cpp @@ -4987,7 +4987,7 @@ static bool parse_typedef(parser_t *parser) } if ( (old = parser_find_var(parser, typevar->m_name)) ) { - parseerror(parser, "cannot define a type with the same name as a variable: %s\n" + parseerror(parser, "cannot define a type with the same name as a variable:\n" " -> `%s` has been declared here: %s:%i", typevar->m_name, old->m_context.file, old->m_context.line); delete typevar;