browseui: Print 64bit integers with wine_dbgstr_longlong.

This commit is contained in:
Stefan Leichter 2007-11-08 23:10:22 +01:00 committed by Alexandre Julliard
parent b4b10d8bc2
commit d4e37265f8
1 changed files with 1 additions and 1 deletions

View File

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