Skip to content
Snippets Groups Projects
Commit 045d81f1 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Added ENOEXEC error code.

parent 95a4332f
No related branches found
No related tags found
No related merge requests found
......@@ -292,8 +292,11 @@ void FILE_SetDosError(void)
case ENOTEMPTY:
SetLastError( ERROR_DIR_NOT_EMPTY );
break;
case ENOEXEC:
SetLastError( ERROR_BAD_FORMAT );
break;
default:
perror( "int21: unknown errno" );
perror( "FILE_SetDosError: unknown 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