1
0

Added newline to logged messages in the tests.

This commit is contained in:
Mattes D 2015-01-11 10:34:50 +01:00
parent a9b8a530b1
commit bef957ef14

View File

@ -275,6 +275,7 @@ void inline LOGERROR(const char* a_Format, ...)
va_list argList;
va_start(argList, a_Format);
vprintf(a_Format, argList);
putchar('\n');
va_end(argList);
}
@ -285,6 +286,7 @@ void inline LOGWARNING(const char* a_Format, ...)
va_list argList;
va_start(argList, a_Format);
vprintf(a_Format, argList);
putchar('\n');
va_end(argList);
}
@ -295,6 +297,7 @@ void inline LOGD(const char* a_Format, ...)
va_list argList;
va_start(argList, a_Format);
vprintf(a_Format, argList);
putchar('\n');
va_end(argList);
}
@ -305,6 +308,7 @@ void inline LOG(const char* a_Format, ...)
va_list argList;
va_start(argList, a_Format);
vprintf(a_Format, argList);
putchar('\n');
va_end(argList);
}