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

fntcache: Enable compilation with long types.

parent 2891f987
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = fntcache.dll
IMPORTS = advapi32
......
......@@ -50,7 +50,7 @@ static DWORD WINAPI service_handler( DWORD ctrl, DWORD event_type, void *event_d
SetEvent( stop_event );
return NO_ERROR;
default:
FIXME( "got service ctrl %x\n", ctrl );
FIXME( "got service ctrl %lx\n", ctrl );
status.dwCurrentState = SERVICE_RUNNING;
SetServiceStatus( service_handle, &status );
return NO_ERROR;
......
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