user32/tests: Use the same #ifdef condition as in the code

André Hentschel nerv at dawncrow.de
Mon Oct 8 12:52:56 CDT 2012


That won't fix the issue on ARM, but it seems more correct to use the same condition in code and test.

---
 dlls/user32/tests/class.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/user32/tests/class.c b/dlls/user32/tests/class.c
index 1fa9b9b..d6b07b1 100644
--- a/dlls/user32/tests/class.c
+++ b/dlls/user32/tests/class.c
@@ -889,10 +889,10 @@ static const struct
 } extra_values[] =
 {
     {"#32770",30,30}, /* Dialog */
-#ifdef _WIN64
-    {"Edit",8,8},
-#else
+#ifdef __i386__
     {"Edit",6,8},     /* Windows XP 64-bit returns 8 also to 32-bit applications */
+#else
+    {"Edit",8,8},
 #endif
 };
 
-- 
1.7.4.1


-- 

Best Regards, André Hentschel


More information about the wine-patches mailing list