From de662eeecc265648c14457f68d7469985207dcce Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Mon, 3 Oct 2005 10:15:32 +0000 Subject: [PATCH] Convert a WARN to a FIXME to make it visible to a user, replace an ERR by a FIXME as it's more appropriate. --- dlls/winedos/module.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/winedos/module.c b/dlls/winedos/module.c index c903cda8760..5b2cc43c152 100644 --- a/dlls/winedos/module.c +++ b/dlls/winedos/module.c @@ -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, LPCSTR filename, BYTE func, LPVOID para */ 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"); } /***********************************************************************