Commit 5376c868 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Fix an obvious typo in call_hook_AtoW.

parent cc83d9ad
...@@ -190,7 +190,7 @@ static LRESULT call_hook_AtoW( HOOKPROC proc, INT id, INT code, WPARAM wparam, L ...@@ -190,7 +190,7 @@ static LRESULT call_hook_AtoW( HOOKPROC proc, INT id, INT code, WPARAM wparam, L
} }
if (HIWORD(cbtcwA->lpcs->lpszClass)) if (HIWORD(cbtcwA->lpcs->lpszClass))
{ {
RtlCreateUnicodeStringFromAsciiz(&usBuffer,cbtcwA->lpcs->lpszName); RtlCreateUnicodeStringFromAsciiz(&usBuffer,cbtcwA->lpcs->lpszClass);
csW.lpszClass = usBuffer.Buffer; csW.lpszClass = usBuffer.Buffer;
} }
ret = proc( code, wparam, (LPARAM)&cbtcwW ); ret = proc( code, wparam, (LPARAM)&cbtcwW );
......
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