From 30703d5a5d44f6c5ae81e8caedf975cd9c6445b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Mon, 20 Feb 2012 20:51:09 +0000 Subject: [PATCH] [USETUP] - Print a bit more information when failing. svn path=/trunk/; revision=55762 --- reactos/base/setup/usetup/filesup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/base/setup/usetup/filesup.c b/reactos/base/setup/usetup/filesup.c index 525543d5104..ff80c157c37 100644 --- a/reactos/base/setup/usetup/filesup.c +++ b/reactos/base/setup/usetup/filesup.c @@ -168,7 +168,7 @@ SetupCopyFile(PWCHAR SourceFileName, FileHandleSource); if(!NT_SUCCESS(Status)) { - DPRINT1("NtCreateSection failed: %x\n", Status); + DPRINT1("NtCreateSection failed: %x, %wZ\n", Status, SourceFileName); goto closesrc; } @@ -184,7 +184,7 @@ SetupCopyFile(PWCHAR SourceFileName, PAGE_READONLY ); if(!NT_SUCCESS(Status)) { - DPRINT1("NtMapViewOfSection failed: %x\n", Status); + DPRINT1("NtMapViewOfSection failed: %x, %wZ\n", Status, SourceFileName); goto closesrcsec; }