ntdll: change a noisy FIXME to a WARN (1/2)

Austin English austinenglish at gmail.com
Thu May 21 15:07:02 CDT 2009


On Thu, May 21, 2009 at 3:06 PM, Austin English <austinenglish at gmail.com> wrote:
> Only really shows up for the .NET framework, where it's really noisy.
> Converted it to a WARN, and added a FIXME comment above it, noting its
> use for .Net framework.
>
> See bug 18555.
>
> --
> -Austin
>

Use this one instead.

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/ntdll/nt.c b/dlls/ntdll/nt.c
index 58320c3..99aa70f 100644
--- a/dlls/ntdll/nt.c
+++ b/dlls/ntdll/nt.c
@@ -1307,7 +1307,8 @@ NTSTATUS WINAPI NtPowerInformation(
 			return STATUS_SUCCESS;
 		}
 		default:
-			FIXME("Unimplemented NtPowerInformation action: %d\n", InformationLevel);
+			/* FIXME: Needed by .NET Framework */
+			WARN("Unimplemented NtPowerInformation action: %d\n", InformationLevel);
 			return STATUS_NOT_IMPLEMENTED;
 	}
 }


More information about the wine-patches mailing list