Display status code when the file can't be opened

svn path=/trunk/; revision=18121
This commit is contained in:
Hervé Poussineau 2005-09-27 12:40:20 +00:00
parent 305c7e5ef7
commit dc6b192e48

View file

@ -258,7 +258,7 @@ LdrLoadModule(
CHECKPOINT;
if (!NT_SUCCESS(Status))
{
CPRINT("Could not open module file: %wZ\n", Filename);
CPRINT("Could not open module file: %wZ (Status 0x%08lx)\n", Filename, Status);
return(Status);
}
CHECKPOINT;