user32/tests: Fix compilation on systems that don't support nameless unions.

Francois Gouget fgouget at free.fr
Mon Mar 31 05:30:43 CDT 2014


---
 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 5206642..0966bad 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");
-- 
1.9.1



More information about the wine-patches mailing list