From: Serge Gautherie Subject: [PATCH] shell32/tests: Use explicit NULL instead of 0 Message-Id: <20200406205322.3304-1-winehq-git_serge_180711@gautherie.fr> Date: Mon, 6 Apr 2020 22:53:22 +0200 Signed-off-by: Serge Gautherie --- dlls/shell32/tests/appbar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/shell32/tests/appbar.c b/dlls/shell32/tests/appbar.c index 229d616..07db4f4 100644 --- a/dlls/shell32/tests/appbar.c +++ b/dlls/shell32/tests/appbar.c @@ -128,7 +128,7 @@ static void do_events_until(boolean_function test) UINT_PTR timerid; BOOL timedout=FALSE; - timerid = SetTimer(0, 0, 3000, NULL); + timerid = SetTimer(NULL, 0, 3000, NULL); while (1) { @@ -144,7 +144,7 @@ static void do_events_until(boolean_function test) WaitMessage(); } - KillTimer(0, timerid); + KillTimer(NULL, timerid); } /* process any pending messages */ -- 2.10.0.windows.1