ntdll: Quiet the FIXME for unmapped NTSTATUS values.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2021-05-03 21:42:53 -05:00 committed by Alexandre Julliard
parent b9cfd6eddb
commit beef84721d
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ ULONG WINAPI RtlNtStatusToDosErrorNoTeb( NTSTATUS status )
ret = map_status( status );
if (ret == ERROR_MR_MID_NOT_FOUND && status != STATUS_MESSAGE_NOT_FOUND)
FIXME( "no mapping for %08x\n", status );
WARN( "no mapping for %08x\n", status );
return ret;
}