diff options
author | Dan Christiansen | 2003-10-19 21:05:41 +0000 |
---|---|---|
committer | Michael Niedermayer | 2003-10-19 21:05:41 +0000 |
commit | dc7cb06ae0f1a24ca0aa106eacc332ceba518928 (patch) | |
tree | 0ceb16ec5a54f279e929937435f9bcdeb6318aab /libavcodec/interplayvideo.c | |
parent | 4cb3f3b6376474ae251421d5bb318998a3776ae8 (diff) |
gcc->C99 and warning fixes patch by (Dan Christiansen <danchr at daimi dot au dot dk>)
Originally committed as revision 2399 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/interplayvideo.c')
-rw-r--r-- | libavcodec/interplayvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c index 7f54e5d046..a8a7c0f562 100644 --- a/libavcodec/interplayvideo.c +++ b/libavcodec/interplayvideo.c @@ -876,7 +876,7 @@ static int ipvideo_decode_init(AVCodecContext *avctx) if (s->avctx->extradata_size != sizeof(AVPaletteControl)) { printf (" Interplay video: expected extradata_size of %d\n", - sizeof(AVPaletteControl)); + (int)sizeof(AVPaletteControl)); return -1; } |