Commit a4522d00 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

quartz: Use wine_dbgstr_longlong in WAVEParserImpl_seek.

parent 9a70bb52
......@@ -206,13 +206,15 @@ static HRESULT WINAPI WAVEParserImpl_seek(IMediaSeeking *iface)
if (newpos > endpos)
{
WARN("Requesting position %x%08x beyond end of stream %x%08x\n", (DWORD)(newpos>>32), (DWORD)newpos, (DWORD)(endpos>>32), (DWORD)endpos);
WARN("Requesting position %s beyond end of stream %s\n",
wine_dbgstr_longlong(newpos), wine_dbgstr_longlong(endpos));
return E_INVALIDARG;
}
if (curpos/1000000 == newpos/1000000)
{
TRACE("Requesting position %x%08x same as current position %x%08x\n", (DWORD)(newpos>>32), (DWORD)newpos, (DWORD)(curpos>>32), (DWORD)curpos);
TRACE("Requesting position %s same as current position %s\n",
wine_dbgstr_longlong(newpos), wine_dbgstr_longlong(curpos));
return S_OK;
}
......
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