Skip to content

Commit 30703d5

Browse files
committed
[USETUP]
- Print a bit more information when failing. svn path=/trunk/; revision=55762
1 parent 435f5a8 commit 30703d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reactos/base/setup/usetup/filesup.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ SetupCopyFile(PWCHAR SourceFileName,
168168
FileHandleSource);
169169
if(!NT_SUCCESS(Status))
170170
{
171-
DPRINT1("NtCreateSection failed: %x\n", Status);
171+
DPRINT1("NtCreateSection failed: %x, %wZ\n", Status, SourceFileName);
172172
goto closesrc;
173173
}
174174

@@ -184,7 +184,7 @@ SetupCopyFile(PWCHAR SourceFileName,
184184
PAGE_READONLY );
185185
if(!NT_SUCCESS(Status))
186186
{
187-
DPRINT1("NtMapViewOfSection failed: %x\n", Status);
187+
DPRINT1("NtMapViewOfSection failed: %x, %wZ\n", Status, SourceFileName);
188188
goto closesrcsec;
189189
}
190190

0 commit comments

Comments
 (0)