Commit 9ceac318 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msvcp90: Remove an unneeded cast.

parent 2b54a7ee
......@@ -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]);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment