Mercurial > mplayer.hg
changeset 25774:ebd1ab1c5357
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'
author | diego |
---|---|
date | Sat, 19 Jan 2008 15:08:01 +0000 |
parents | dfeedb0580f0 |
children | 7a0bcfc36766 |
files | loader/dshow/outputpin.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/loader/dshow/outputpin.c Sat Jan 19 15:04:33 2008 +0000 +++ b/loader/dshow/outputpin.c Sat Jan 19 15:08:01 2008 +0000 @@ -751,7 +751,7 @@ /* [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;