powerprof: change a noisy FIXME to a WARN (2/2)

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


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
-------------- next part --------------
diff --git a/dlls/powrprof/powrprof.c b/dlls/powrprof/powrprof.c
index c51434f..8a9fc73 100644
--- a/dlls/powrprof/powrprof.c
+++ b/dlls/powrprof/powrprof.c
@@ -299,7 +299,8 @@ BOOLEAN WINAPI WritePwrScheme(PUINT puiID, LPWSTR lpszName, LPWSTR lpszDescripti
 
 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
 {
-   FIXME("(%p, %d, %p) not fully implemented\n", hinstDLL, fdwReason, lpvReserved);
+   /* FIXME: Needed by .NET Framework */
+   WARN("(%p, %d, %p) not fully implemented\n", hinstDLL, fdwReason, lpvReserved);
 
    switch(fdwReason) {
       case DLL_PROCESS_ATTACH: {


More information about the wine-patches mailing list