test.h: Add a space after the file name prefix.

This commit is contained in:
Alexandre Julliard 2008-06-04 12:32:48 +02:00
parent b6305ed413
commit 58b00da312

View file

@ -298,7 +298,7 @@ void winetest_trace( const char *msg, ... )
if (winetest_debug > 0)
{
fprintf( stdout, "%s:%d:", data->current_file, data->current_line );
fprintf( stdout, "%s:%d: ", data->current_file, data->current_line );
va_start(valist, msg);
vfprintf(stdout, msg, valist);
va_end(valist);