Mercurial > mplayer.hg
changeset 26148:d3b951d9b4d3
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'
author | diego |
---|---|
date | Thu, 06 Mar 2008 08:43:20 +0000 |
parents | 41652035483c |
children | 484bf3498911 |
files | libmpcodecs/ve_vfw.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/ve_vfw.c Thu Mar 06 08:34:50 2008 +0000 +++ b/libmpcodecs/ve_vfw.c Thu Mar 06 08:43:20 2008 +0000 @@ -249,7 +249,7 @@ 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;