mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[USETUP]
- Fix some format specifiers. svn path=/trunk/; revision=60973
This commit is contained in:
parent
ed87d06c85
commit
f157448a0d
1 changed files with 2 additions and 2 deletions
|
@ -168,7 +168,7 @@ SetupCopyFile(PWCHAR SourceFileName,
|
|||
FileHandleSource);
|
||||
if(!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("NtCreateSection failed: %x, %wZ\n", Status, SourceFileName);
|
||||
DPRINT1("NtCreateSection failed: %x, %S\n", Status, SourceFileName);
|
||||
goto closesrc;
|
||||
}
|
||||
|
||||
|
@ -184,7 +184,7 @@ SetupCopyFile(PWCHAR SourceFileName,
|
|||
PAGE_READONLY );
|
||||
if(!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("NtMapViewOfSection failed: %x, %wZ\n", Status, SourceFileName);
|
||||
DPRINT1("NtMapViewOfSection failed: %x, %S\n", Status, SourceFileName);
|
||||
goto closesrcsec;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue