msvcp90: Remove an unneeded cast.

oldstable
Francois Gouget 2011-11-14 12:33:11 +01:00 committed by Alexandre Julliard
parent 2b54a7ee72
commit 9ceac318e0
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ void __cdecl _Lockit_init(int locktype) {
/* ?_Lockit_dtor@_Lockit@std@@SAXH@Z */
void __cdecl _Lockit_free(int locktype)
{
lockit_cs[locktype].DebugInfo->Spare[0] = (DWORD_PTR)0;
lockit_cs[locktype].DebugInfo->Spare[0] = 0;
DeleteCriticalSection(&lockit_cs[locktype]);
}