Austin English : ntdll: Change a noisy FIXME to a WARN.

Alexandre Julliard julliard at winehq.org
Fri May 22 08:25:32 CDT 2009


Module: wine
Branch: master
Commit: 81543b79c21a8c9c9761294fc31ab6ce1348a66a
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=81543b79c21a8c9c9761294fc31ab6ce1348a66a

Author: Austin English <austinenglish at gmail.com>
Date:   Thu May 21 15:07:02 2009 -0500

ntdll: Change a noisy FIXME to a WARN.

---

 dlls/ntdll/nt.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/ntdll/nt.c b/dlls/ntdll/nt.c
index 58320c3..323e7e6 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-cvs mailing list