Use debugging API instead of outputing to stderr directly.
This commit is contained in:
parent
bb84359c41
commit
dbb61c0f3e
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue