Author: hpoussin Date: Wed Nov 14 15:26:39 2007 New Revision: 30440
URL: http://svn.reactos.org/svn/reactos?rev=30440&view=rev Log: No need to cast variables, as they already are of the right type
Modified: trunk/reactos/dll/win32/user32/windows/input.c
Modified: trunk/reactos/dll/win32/user32/windows/input.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/user32/windows/in... ============================================================================== --- trunk/reactos/dll/win32/user32/windows/input.c (original) +++ trunk/reactos/dll/win32/user32/windows/input.c Wed Nov 14 15:26:39 2007 @@ -547,7 +547,7 @@ VkKeyScanExW(WCHAR ch, HKL dwhkl) { - return (SHORT) NtUserVkKeyScanEx((DWORD) ch,(DWORD) dwhkl,(DWORD)NULL); + return (SHORT) NtUserVkKeyScanEx(ch, dwhkl, 0); }