ntdll: quiet a noisy fixme

Austin English austinenglish at gmail.com
Sat Aug 8 17:17:15 CDT 2009


Pointed out by Focht.

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/ntdll/nt.c b/dlls/ntdll/nt.c
index c7d931c..8679da5 100644
--- a/dlls/ntdll/nt.c
+++ b/dlls/ntdll/nt.c
@@ -1330,7 +1330,7 @@ NTSTATUS WINAPI NtPowerInformation(
 		}
 		case SystemExecutionState: {
 			PULONG ExecutionState = lpOutputBuffer;
-			FIXME("semi-stub: SystemExecutionState\n");
+			WARN("semi-stub: SystemExecutionState\n"); /* Needed for .NET Framework, but using a FIXME is really noisy. */
 			if (lpInputBuffer != NULL)
 				return STATUS_INVALID_PARAMETER;
 			/* FIXME: The actual state should be the value set by SetThreadExecutionState which is not currently implemented. */


More information about the wine-patches mailing list