add newline to non-windows log output

This commit is contained in:
Palana
2013-12-30 03:26:09 +01:00
parent c093f04c58
commit 3462a9b8b9

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
}