Commit de662eee authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

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

by a FIXME as it's more appropriate.
parent 8a4e04a4
......@@ -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");
}
/***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment