No need to cast variables, as they already are of the right type

svn path=/trunk/; revision=30440
This commit is contained in:
Hervé Poussineau
2007-11-14 12:26:39 +00:00
parent 5806de25d7
commit 53516e1e20
+1 -1
View File
@@ -547,7 +547,7 @@ SHORT STDCALL
VkKeyScanExW(WCHAR ch,
HKL dwhkl)
{
return (SHORT) NtUserVkKeyScanEx((DWORD) ch,(DWORD) dwhkl,(DWORD)NULL);
return (SHORT) NtUserVkKeyScanEx(ch, dwhkl, 0);
}