Commit ba0e38b1 authored by Akihiro Sagawa's avatar Akihiro Sagawa Committed by Alexandre Julliard

imm32/tests: Fix typo.

hwnd is a global variable, hWnd is a local variable. They're very confusable. Signed-off-by: 's avatarAkihiro Sagawa <sagawa.aki@gmail.com> Signed-off-by: 's avatarAric Stewart <aric@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 1098a673
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment