mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:13:56 +00:00
Use debugging API instead of outputing to stderr directly.
This commit is contained in:
parent
bb84359c41
commit
dbb61c0f3e
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue