From 141673c22292406bbab0b2fe269f1e13592911eb Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Thu, 24 May 2007 17:15:31 +0900 Subject: [PATCH] user32/tests: Fix a problem revealed by compilation in 64-bit mode. --- dlls/user32/tests/win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/user32/tests/win.c b/dlls/user32/tests/win.c index 632fcc19d34..9faca351ab5 100644 --- a/dlls/user32/tests/win.c +++ b/dlls/user32/tests/win.c @@ -322,7 +322,7 @@ static void test_parent_owner(void) if (0) { /* this test succeeds on NT but crashes on win9x systems */ - ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, (LONG_PTR)hwndMain2 ); + ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)hwndMain2 ); ok( !ret, "Set GWL_HWNDPARENT succeeded on desktop\n" ); check_parents( desktop, 0, 0, 0, 0, 0, 0 ); ok( !SetParent( desktop, hwndMain ), "SetParent succeeded on desktop\n" );