Module: wine Branch: master Commit: b07ea863d22e9a21f71e4bc4027f67b2c9d2d5ee URL: http://source.winehq.org/git/wine.git/?a=commit;h=b07ea863d22e9a21f71e4bc402...
Author: Hans Leidekker hans@codeweavers.com Date: Wed Nov 17 10:57:21 2010 +0100
msi: Trace the reinstall mode in hex in MsiReinstallFeatureW.
---
dlls/msi/msi.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c index dcd8e8e..b4a4142 100644 --- a/dlls/msi/msi.c +++ b/dlls/msi/msi.c @@ -3541,8 +3541,8 @@ UINT WINAPI MsiReinstallFeatureW( LPCWSTR szProduct, LPCWSTR szFeature, LPWSTR ptr; DWORD sz;
- FIXME("%s %s %i\n", debugstr_w(szProduct), debugstr_w(szFeature), - dwReinstallMode); + FIXME("%s %s 0x%08x\n", + debugstr_w(szProduct), debugstr_w(szFeature), dwReinstallMode);
ptr = reinstallmode;