Fixed newline in verbose message

This commit is contained in:
Samuel Degrande 2014-10-16 09:08:39 +02:00 committed by PKEuS
parent 2bba3b4c9d
commit 96e8b83bf8
1 changed files with 1 additions and 1 deletions

View File

@ -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"