Author: weiden Date: Fri Mar 28 20:04:33 2008 New Revision: 32777
URL: http://svn.reactos.org/svn/reactos?rev=32777&view=rev Log: Fix difference in signedness warning
Modified: trunk/reactos/dll/win32/shell32/recyclebin.c
Modified: trunk/reactos/dll/win32/shell32/recyclebin.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/recyclebi... ============================================================================== --- trunk/reactos/dll/win32/shell32/recyclebin.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/recyclebin.c [iso-8859-1] Fri Mar 28 20:04:33 2008 @@ -999,7 +999,7 @@ LONG res; HKEY hKey; DWORD RegSerial, dwNukeOnDelete, dwType; - LONG dwLength; + DWORD dwLength;
static WCHAR szKey[] = L"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Bitbucket\c";