Commit 581de308 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

vcruntime140: Enable compilation with long types.

parent 7ffff5c5
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = vcruntime140.dll
C_SRCS = \
......
......@@ -46,7 +46,7 @@ void CDECL __telemetry_main_return_trigger(HINSTANCE hinst)
BOOL CDECL __vcrt_InitializeCriticalSectionEx(
CRITICAL_SECTION *cs, DWORD spin_count, DWORD flags)
{
TRACE("(%p %x %x)\n", cs, spin_count, flags);
TRACE("(%p %lx %lx)\n", cs, spin_count, flags);
return InitializeCriticalSectionEx(cs, spin_count, flags);
}
......
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