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

View file

@ -296,7 +296,7 @@ void FILE_SetDosError(void)
SetLastError( ERROR_BAD_FORMAT ); SetLastError( ERROR_BAD_FORMAT );
break; break;
default: default:
perror( "FILE_SetDosError: unknown errno" ); WARN( strerror(save_errno) );
SetLastError( ERROR_GEN_FAILURE ); SetLastError( ERROR_GEN_FAILURE );
break; break;
} }