From f818bbf61a6a8a39b8d34a6eafa13b075abe41cd Mon Sep 17 00:00:00 2001 From: Francois Gouget <fgouget@free.fr> Date: Mon, 3 Feb 2020 02:04:05 +0100 Subject: [PATCH] tests: Don't initialize static variables to 0. Static variables are initialized to 0 by default anyway. Signed-off-by: Francois Gouget <fgouget@free.fr> Signed-off-by: Alexandre Julliard <julliard@winehq.org> --- include/wine/test.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/wine/test.h b/include/wine/test.h index a919ce81d68..5c3b432a9a2 100644 --- a/include/wine/test.h +++ b/include/wine/test.h @@ -498,7 +498,6 @@ static int run_test( const char *name ) printf( "Fatal: test '%s' does not exist.\n", name ); exit_process(1); } - successes = failures = todo_successes = todo_failures = 0; tls_index=TlsAlloc(); current_test = test; test->func(); -- GitLab