kernel32: Change SetHandleCount to match behaviour on versions >WINNT.

This commit is contained in:
Louis Lenders 2010-09-03 20:47:30 +02:00 committed by Alexandre Julliard
parent a161d59504
commit e793f9b072
1 changed files with 1 additions and 1 deletions

View File

@ -1192,7 +1192,7 @@ BOOL WINAPI UnlockFileEx( HANDLE hFile, DWORD reserved, DWORD count_low, DWORD c
*/
UINT WINAPI SetHandleCount( UINT count )
{
return min( 256, count );
return count;
}