Hans Leidekker : msi: Improve a trace.

Alexandre Julliard julliard at winehq.org
Tue Mar 2 10:32:34 CST 2010


Module: wine
Branch: master
Commit: a64372ca44e08dbaaf9376607ea2d6e6c38879dd
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a64372ca44e08dbaaf9376607ea2d6e6c38879dd

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Tue Mar  2 14:55:06 2010 +0100

msi: Improve a trace.

---

 dlls/msi/action.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/dlls/msi/action.c b/dlls/msi/action.c
index 872e8dd..0569cc7 100644
--- a/dlls/msi/action.c
+++ b/dlls/msi/action.c
@@ -6688,7 +6688,10 @@ static UINT ACTION_ScheduleReboot( MSIPACKAGE *package )
 
 static UINT ACTION_AllocateRegistrySpace( MSIPACKAGE *package )
 {
-    TRACE("%p\n", package);
+    static const WCHAR szAvailableFreeReg[] =
+        {'A','V','A','I','L','A','B','L','E','F','R','E','E','R','E','G',0};
+
+    TRACE("%p %d kilobytes\n", package, msi_get_property_int( package, szAvailableFreeReg, 0 ));
     return ERROR_SUCCESS;
 }
 




More information about the wine-cvs mailing list