From 58b00da312e1aa2214c1841683740e184bb551a7 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 4 Jun 2008 12:32:48 +0200 Subject: [PATCH] test.h: Add a space after the file name prefix. --- include/wine/test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wine/test.h b/include/wine/test.h index f99b61774d9..f7a0065ff23 100644 --- a/include/wine/test.h +++ b/include/wine/test.h @@ -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);