Commit dfd6bbf1 authored by Rolf Kalbermatter's avatar Rolf Kalbermatter Committed by Alexandre Julliard

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

used.
parent 9e06d0c6
...@@ -262,7 +262,10 @@ NTSTATUS WINAPI NtClearEvent ( HANDLE handle ) ...@@ -262,7 +262,10 @@ NTSTATUS WINAPI NtClearEvent ( HANDLE handle )
NTSTATUS WINAPI NtPulseEvent( HANDLE handle, PULONG PulseCount ) NTSTATUS WINAPI NtPulseEvent( HANDLE handle, PULONG PulseCount )
{ {
NTSTATUS ret; NTSTATUS ret;
FIXME("(%p,%p)\n", handle, PulseCount);
if (PulseCount)
FIXME("(%p,%ld)\n", handle, *PulseCount);
SERVER_START_REQ( event_op ) SERVER_START_REQ( event_op )
{ {
req->handle = handle; req->handle = handle;
......
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