msi: Improve a trace.

This commit is contained in:
Hans Leidekker 2010-03-02 14:55:06 +01:00 committed by Alexandre Julliard
parent bafbc9820e
commit a64372ca44
1 changed files with 4 additions and 1 deletions

View File

@ -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;
}