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@gmail.com>
Signed-off-by: Aric Stewart <aric@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Akihiro Sagawa 2016-02-11 23:03:19 +09:00 committed by Alexandre Julliard
parent 1098a673e6
commit ba0e38b175
1 changed files with 1 additions and 1 deletions

View File

@ -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) {