Skip to content
Snippets Groups Projects
Commit dbb61c0f authored by Dimitrie O. Paun's avatar Dimitrie O. Paun Committed by Alexandre Julliard
Browse files

Use debugging API instead of outputing to stderr directly.

parent bb84359c
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment