From 0eada29ab781e21606109e70d2824559050173fc Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Thu, 20 Jan 2011 14:30:15 +0000 Subject: [PATCH] [CMAKE] Disable format warnings for winetest_ok svn path=/branches/cmake-bringup/; revision=50449 --- include/reactos/wine/test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/reactos/wine/test.h b/include/reactos/wine/test.h index 8fc1a2ef3d7..035b0375942 100644 --- a/include/reactos/wine/test.h +++ b/include/reactos/wine/test.h @@ -96,7 +96,7 @@ extern void winetest_vskip( const char *msg, __winetest_va_list ap ); #ifdef __GNUC__ -extern void __winetest_cdecl winetest_ok( int condition, const char *msg, ... ) __attribute__((format (printf,2,3) )); +extern void __winetest_cdecl winetest_ok( int condition, const char *msg, ... ); extern void __winetest_cdecl winetest_skip( const char *msg, ... ) __attribute__((format (printf,1,2))); extern void __winetest_cdecl winetest_win_skip( const char *msg, ... ) __attribute__((format (printf,1,2))); extern void __winetest_cdecl winetest_trace( const char *msg, ... ) __attribute__((format (printf,1,2)));