Use debugging API instead of outputing to stderr directly.

This commit is contained in:
Dimitrie O. Paun 2000-11-04 02:55:54 +00:00 committed by Alexandre Julliard
parent bb84359c41
commit dbb61c0f3e
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}