Commit a513e067 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winoldap.mod16: Enable compilation with long types.

parent d909d34f
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = winoldap.mod16
EXTRADLLFLAGS = -mconsole -m16
......
......@@ -74,7 +74,7 @@ WORD WINAPI WinMain16( HINSTANCE16 inst, HINSTANCE16 prev, LPSTR cmdline, WORD s
{
/* Give 10 seconds to the app to come up */
if (wait_input_idle( info.hProcess, 10000 ) == WAIT_FAILED)
WINE_WARN("WaitForInputIdle failed: Error %d\n", GetLastError() );
WINE_WARN("WaitForInputIdle failed: Error %ld\n", GetLastError() );
ReleaseThunkLock( &count );
WaitForSingleObject( info.hProcess, INFINITE );
RestoreThunkLock( count );
......
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