Zebediah Figura : ntdll: Quiet the FIXME for unmapped NTSTATUS values.

Alexandre Julliard julliard at winehq.org
Tue May 4 16:23:34 CDT 2021


Module: wine
Branch: master
Commit: beef84721d81980a93ae57a344294fe3ad86fd72
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=beef84721d81980a93ae57a344294fe3ad86fd72

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Mon May  3 21:42:53 2021 -0500

ntdll: Quiet the FIXME for unmapped NTSTATUS values.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/ntdll/error.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ntdll/error.c b/dlls/ntdll/error.c
index 738f55b42dc..3df63b16c21 100644
--- a/dlls/ntdll/error.c
+++ b/dlls/ntdll/error.c
@@ -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;
 }
 




More information about the wine-cvs mailing list