From ebd99188302b27351cdf72d5296fde8ff82922ac Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Mon, 31 Mar 2014 12:30:43 +0200 Subject: [PATCH] user32/tests: Fix compilation on systems that don't support nameless unions. --- dlls/user32/tests/win.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dlls/user32/tests/win.c b/dlls/user32/tests/win.c index 52066421dea..0966badbf33 100644 --- a/dlls/user32/tests/win.c +++ b/dlls/user32/tests/win.c @@ -7548,13 +7548,13 @@ START_TEST(win) memset(input, 0, sizeof(input)); input[0].type = INPUT_MOUSE; - input[0].mi.dx = 101; - input[0].mi.dy = 101; - input[0].mi.dwFlags = MOUSEEVENTF_LEFTDOWN; + U(input[0]).mi.dx = 101; + U(input[0]).mi.dy = 101; + U(input[0]).mi.dwFlags = MOUSEEVENTF_LEFTDOWN; input[0].type = INPUT_MOUSE; - input[0].mi.dx = 101; - input[0].mi.dy = 101; - input[0].mi.dwFlags = MOUSEEVENTF_LEFTUP; + U(input[0]).mi.dx = 101; + U(input[0]).mi.dy = 101; + U(input[0]).mi.dwFlags = MOUSEEVENTF_LEFTUP; events_no = SendInput(2, input, sizeof(input[0])); ok(events_no == 2, "SendInput returned %d\n", events_no); ok(SetForegroundWindow(hwndMain), "SetForegroundWindow failed\n");