Print exe name when initialization fails.

This commit is contained in:
Mike Hearn 2003-12-31 00:11:48 +00:00 committed by Alexandre Julliard
parent c24c30fffc
commit 5f5034ff3b
1 changed files with 1 additions and 1 deletions

View File

@ -1877,7 +1877,7 @@ void WINAPI LdrInitializeThunk( HANDLE main_file, void *CreateFileW_ptr, ULONG u
return;
error:
ERR( "Main exe initialization failed, status %lx\n", status );
ERR( "Main exe initialization for %s failed, status %lx\n", debugstr_w(main_exe_name->Buffer), status );
exit(1);
}