mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
Display status code when the file can't be opened
svn path=/trunk/; revision=18121
This commit is contained in:
parent
305c7e5ef7
commit
dc6b192e48
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue