Stefan Leichter : browseui: Print 64bit integers with wine_dbgstr_longlong.

Alexandre Julliard julliard at winehq.org
Fri Nov 9 07:44:21 CST 2007


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

Author: Stefan Leichter <Stefan.Leichter at camline.com>
Date:   Thu Nov  8 23:10:22 2007 +0100

browseui: Print 64bit integers with wine_dbgstr_longlong.

---

 dlls/browseui/progressdlg.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/browseui/progressdlg.c b/dlls/browseui/progressdlg.c
index 697d114..63f51dd 100644
--- a/dlls/browseui/progressdlg.c
+++ b/dlls/browseui/progressdlg.c
@@ -407,7 +407,7 @@ static HRESULT WINAPI ProgressDialog_SetProgress64(IProgressDialog *iface, ULONG
     ProgressDialog *This = (ProgressDialog *)iface;
     HWND hwnd;
 
-    TRACE("(%p, %llu, %llu)\n", This, ullCompleted, ullTotal);
+    TRACE("(%p, 0x%s, 0x%s)\n", This, wine_dbgstr_longlong(ullCompleted), wine_dbgstr_longlong(ullTotal));
 
     EnterCriticalSection(&This->cs);
     This->ullTotal = ullTotal;




More information about the wine-cvs mailing list