mirror of
https://github.com/mpv-player/mpv
synced 2025-02-28 11:20:56 +00:00
Use ld conversion specifier for long int argument, fixes the warning:
dshow/outputpin.c:754: warning: format '%d' expects type 'int', but argument 3 has type 'long int' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25802 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
8bde6dfbfd
commit
fc6f2b51e3
@ -751,7 +751,7 @@ static HRESULT STDCALL COutputMemPin_ReceiveMultiple(IMemInputPin * This,
|
||||
/* [out] */ long *nSamplesProcessed)
|
||||
{
|
||||
HRESULT hr;
|
||||
Debug printf("COutputMemPin_ReceiveMultiple(%p) %d\n", This,nSamples);
|
||||
Debug printf("COutputMemPin_ReceiveMultiple(%p) %ld\n", This,nSamples);
|
||||
for(*nSamplesProcessed=0; *nSamplesProcessed < nSamples; *nSamplesProcessed++) {
|
||||
hr = This->vt->Receive(This,pSamples[*nSamplesProcessed]);
|
||||
if (hr != S_OK) break;
|
||||
|
Loading…
Reference in New Issue
Block a user