We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 435f5a8 commit 30703d5Copy full SHA for 30703d5
reactos/base/setup/usetup/filesup.c
@@ -168,7 +168,7 @@ SetupCopyFile(PWCHAR SourceFileName,
168
FileHandleSource);
169
if(!NT_SUCCESS(Status))
170
{
171
- DPRINT1("NtCreateSection failed: %x\n", Status);
+ DPRINT1("NtCreateSection failed: %x, %wZ\n", Status, SourceFileName);
172
goto closesrc;
173
}
174
@@ -184,7 +184,7 @@ SetupCopyFile(PWCHAR SourceFileName,
184
PAGE_READONLY );
185
186
187
- DPRINT1("NtMapViewOfSection failed: %x\n", Status);
+ DPRINT1("NtMapViewOfSection failed: %x, %wZ\n", Status, SourceFileName);
188
goto closesrcsec;
189
190
0 commit comments