Convert a WARN to a FIXME to make it visible to a user

Dmitry Timoshkov dmitry at baikal.ru
Sat Oct 1 23:11:22 CDT 2005


Hello,

Changelog:
    Dmitry Timoshkov <dmitry at codeweavers.com>
    Convert a WARN to a FIXME to make it visible to a user,
    replace an ERR by a FIXME as it's more appropriate.

--- cvs/hq/wine/dlls/winedos/module.c	2005-08-30 12:30:25.000000000 +0900
+++ wine/dlls/winedos/module.c	2005-10-02 11:56:57.000000000 +0900
@@ -731,8 +731,8 @@ BOOL WINAPI MZ_Current( void )
  */
 void WINAPI wine_load_dos_exe( LPCSTR filename, LPCSTR cmdline )
 {
-  WARN("DOS executables not supported on this platform\n");
-  SetLastError(ERROR_BAD_FORMAT);
+    FIXME("DOS executables not supported on this platform\n");
+    SetLastError(ERROR_BAD_FORMAT);
 }
 
 /***********************************************************************
@@ -750,7 +750,7 @@ BOOL WINAPI MZ_Exec( CONTEXT86 *context,
  */
 void WINAPI MZ_AllocDPMITask( void )
 {
-    ERR("Actual real-mode calls not supported on this platform!\n");
+    FIXME("Actual real-mode calls not supported on this platform!\n");
 }
 
 /***********************************************************************






More information about the wine-patches mailing list