[USETUP]
authorJérôme Gardou <jerome.gardou@reactos.org>
Wed, 13 Nov 2013 16:45:22 +0000 (16:45 +0000)
committerJérôme Gardou <jerome.gardou@reactos.org>
Wed, 13 Nov 2013 16:45:22 +0000 (16:45 +0000)
 - Fix some format specifiers.

svn path=/trunk/; revision=60973

reactos/base/setup/usetup/filesup.c

index 030a4ff..2902088 100644 (file)
@@ -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;
     }