Fix printf format string mismatch, eliminates the warning:

ve_vfw.c:252: warning: format '%d' expects type 'int', but argument 2 has type 'long int'


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26180 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-03-06 08:43:20 +00:00
parent db85806a9c
commit bcf021b76e
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ static int vfw_encode_frame(BITMAPINFOHEADER* biOutput,void* OutBuf,
NULL, keyframe, encoder_frameno, 0, quality,
biInput, encoder_buf);
// printf("ok. size=%d\n",biOutput->biSizeImage);
// printf("ok. size=%ld\n",biOutput->biSizeImage);
memcpy(encoder_buf,Image,encoder_buf_size);
++encoder_frameno;