Commit dbb61c0f authored by Dimitrie O. Paun's avatar Dimitrie O. Paun Committed by Alexandre Julliard

Use debugging API instead of outputing to stderr directly.

parent bb84359c
......@@ -296,7 +296,7 @@ void FILE_SetDosError(void)
SetLastError( ERROR_BAD_FORMAT );
break;
default:
perror( "FILE_SetDosError: unknown errno" );
WARN( strerror(save_errno) );
SetLastError( ERROR_GEN_FAILURE );
break;
}
......
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