From 47475bb455a5724e458752fac498aa0264e7690b Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Sat, 27 Mar 2021 20:45:40 -0400 Subject: [PATCH] fix bug #188 --- parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2