NtPulseEvent: Don't print FIXME for an optional parameter if it isn't

used.
This commit is contained in:
Rolf Kalbermatter 2004-04-01 21:01:53 +00:00 committed by Alexandre Julliard
parent 9e06d0c68a
commit dfd6bbf1d2

View file

@ -262,7 +262,10 @@ NTSTATUS WINAPI NtClearEvent ( HANDLE handle )
NTSTATUS WINAPI NtPulseEvent( HANDLE handle, PULONG PulseCount )
{
NTSTATUS ret;
FIXME("(%p,%p)\n", handle, PulseCount);
if (PulseCount)
FIXME("(%p,%ld)\n", handle, *PulseCount);
SERVER_START_REQ( event_op )
{
req->handle = handle;