add newline to non-windows log output

master
Palana 2013-12-30 03:26:09 +01:00
parent c093f04c58
commit 3462a9b8b9
1 changed files with 1 additions and 0 deletions

View File

@ -50,6 +50,7 @@ static void do_log(enum log_type type, const char *msg, va_list args)
__debugbreak();
#else
vprintf(msg, args);
printf("\n");
#endif
}