Alexandre Julliard : user32/tests: Use the correct lparam in the WM_DDE_ACK reply.

Alexandre Julliard julliard at winehq.org
Mon Oct 19 09:56:13 CDT 2009


Module: wine
Branch: master
Commit: 9390bc921e012888d488e8314a4379bc76e2c4d4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=9390bc921e012888d488e8314a4379bc76e2c4d4

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Oct 19 16:21:50 2009 +0200

user32/tests: Use the correct lparam in the WM_DDE_ACK reply.

---

 dlls/user32/tests/dde.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/user32/tests/dde.c b/dlls/user32/tests/dde.c
index 9e1da70..202bb41 100644
--- a/dlls/user32/tests/dde.c
+++ b/dlls/user32/tests/dde.c
@@ -211,7 +211,7 @@ static LRESULT WINAPI dde_server_wndproc(HWND hwnd, UINT msg, WPARAM wparam, LPA
 
         executed = TRUE;
 
-        lparam = ReuseDDElParam(lparam, WM_DDE_EXECUTE, WM_DDE_ACK, DDE_FACK, HIWORD(lparam));
+        lparam = ReuseDDElParam(lparam, WM_DDE_EXECUTE, WM_DDE_ACK, DDE_FACK, lparam);
         PostMessageA(client, WM_DDE_ACK, (WPARAM)hwnd, lparam);
 
         break;




More information about the wine-cvs mailing list