Commit d4e37265 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

browseui: Print 64bit integers with wine_dbgstr_longlong.

parent b4b10d8b
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment