From 96e8b83bf8d0a35433b466ef7ecddb402a708147 Mon Sep 17 00:00:00 2001 From: Samuel Degrande Date: Thu, 16 Oct 2014 09:08:39 +0200 Subject: [PATCH] Fixed newline in verbose message --- lib/checkother.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkother.cpp b/lib/checkother.cpp index d2e6cfbc5..a9089f999 100644 --- a/lib/checkother.cpp +++ b/lib/checkother.cpp @@ -2713,7 +2713,7 @@ void CheckOther::varFuncNullUBError(const Token *tok) " va_start(ap,s);\n" " for (;;) {\n" " char *p = va_arg(ap,char*);\n" - " printf(\"%018p, %s\n\", p, (long)p & 255 ? p : \"\");\n" + " printf(\"%018p, %s\\n\", p, (long)p & 255 ? p : \"\");\n" " if(!p) break;\n" " }\n" " va_end(ap);\n"