Added line breaks

This commit is contained in:
Mattias Gustavsson 2021-09-14 15:45:49 +02:00
parent b0fc372b47
commit 02a5279fbd

View File

@ -13,6 +13,7 @@ void disable_log( char const* format, ... ) {
va_list args; va_list args;
va_start( args, format ); va_start( args, format );
vprintf( format, args ); vprintf( format, args );
printf("\n");
va_end( args ); va_end( args );
}; };