quartz: Use wine_dbgstr_longlong in WAVEParserImpl_seek.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9a70bb5275
commit
a4522d00df
@ -206,13 +206,15 @@ static HRESULT WINAPI WAVEParserImpl_seek(IMediaSeeking *iface)
|
|||||||
|
|
||||||
if (newpos > endpos)
|
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;
|
return E_INVALIDARG;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (curpos/1000000 == newpos/1000000)
|
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;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user