Commit a1e61581 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntdll: Quiet a noisy fixme.

parent 7ba54ab4
...@@ -2416,6 +2416,7 @@ NTSTATUS WINAPI NtLockFile( HANDLE hFile, HANDLE lock_granted_event, ...@@ -2416,6 +2416,7 @@ NTSTATUS WINAPI NtLockFile( HANDLE hFile, HANDLE lock_granted_event,
NTSTATUS ret; NTSTATUS ret;
HANDLE handle; HANDLE handle;
BOOLEAN async; BOOLEAN async;
static BOOLEAN warn = TRUE;
if (apc || io_status || key) if (apc || io_status || key)
{ {
...@@ -2423,7 +2424,11 @@ NTSTATUS WINAPI NtLockFile( HANDLE hFile, HANDLE lock_granted_event, ...@@ -2423,7 +2424,11 @@ NTSTATUS WINAPI NtLockFile( HANDLE hFile, HANDLE lock_granted_event,
return STATUS_NOT_IMPLEMENTED; return STATUS_NOT_IMPLEMENTED;
} }
if (apc_user) FIXME("I/O completion on lock not implemented yet\n"); if (apc_user && warn)
{
FIXME("I/O completion on lock not implemented yet\n");
warn = FALSE;
}
for (;;) for (;;)
{ {
......
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