[ros-diffs] [hpoussin] 30440: No need to cast variables, as they already are of the right type

hpoussin at svn.reactos.org hpoussin at svn.reactos.org
Wed Nov 14 13:26:39 CET 2007


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/input.c?rev=30440&r1=30439&r2=30440&view=diff
==============================================================================
--- 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);
 }
 
 




More information about the Ros-diffs mailing list