Akihiro Sagawa : imm32/tests: Fix typo.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Feb 12 09:47:44 CST 2016


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

Author: Akihiro Sagawa <sagawa.aki at gmail.com>
Date:   Thu Feb 11 23:03:19 2016 +0900

imm32/tests: Fix typo.

hwnd is a global variable, hWnd is a local variable. They're very confusable.

Signed-off-by: Akihiro Sagawa <sagawa.aki at gmail.com>
Signed-off-by: Aric Stewart <aric at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/imm32/tests/imm32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/imm32/tests/imm32.c b/dlls/imm32/tests/imm32.c
index d55503a..72444e2 100644
--- a/dlls/imm32/tests/imm32.c
+++ b/dlls/imm32/tests/imm32.c
@@ -184,7 +184,7 @@ static LRESULT WINAPI wndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
             return TRUE;
     }
 
-    return DefWindowProcA(hwnd,msg,wParam,lParam);
+    return DefWindowProcA(hWnd,msg,wParam,lParam);
 }
 
 static BOOL init(void) {




More information about the wine-cvs mailing list