From 0e166d998d5f203e3de67cb3776081a97f200de3 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 14 Dec 2018 18:33:34 +0100 Subject: [PATCH] comctl32/tests: Avoid a structure initialization warning. Signed-off-by: Alexandre Julliard --- dlls/comctl32/tests/pager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/tests/pager.c b/dlls/comctl32/tests/pager.c index 718df2510ff..f48dc039543 100644 --- a/dlls/comctl32/tests/pager.c +++ b/dlls/comctl32/tests/pager.c @@ -1099,7 +1099,7 @@ static void test_wm_notify_datetime(HWND pager) static void test_wm_notify_header(HWND pager) { - NMHEADERW nmh = {0}; + NMHEADERW nmh = {{0}}; HDITEMW hdi = {0}; HD_TEXTFILTERW hdtf = {0};