Convert a WARN to a FIXME to make it visible to a user, replace an ERR

by a FIXME as it's more appropriate.
This commit is contained in:
Dmitry Timoshkov 2005-10-03 10:15:32 +00:00 committed by Alexandre Julliard
parent 8a4e04a40a
commit de662eeecc
1 changed files with 3 additions and 3 deletions

View File

@ -731,8 +731,8 @@ BOOL WINAPI MZ_Current( void )
*/ */
void WINAPI wine_load_dos_exe( LPCSTR filename, LPCSTR cmdline ) void WINAPI wine_load_dos_exe( LPCSTR filename, LPCSTR cmdline )
{ {
WARN("DOS executables not supported on this platform\n"); FIXME("DOS executables not supported on this platform\n");
SetLastError(ERROR_BAD_FORMAT); 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 ) 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");
} }
/*********************************************************************** /***********************************************************************