From f0878812074f995e4e69ad6c9c352ad29d38dd5c Mon Sep 17 00:00:00 2001 From: Peter Ross Date: Wed, 3 Mar 2010 09:38:09 +0000 Subject: [PATCH] use intended const syntax Originally committed as revision 22165 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/iff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/iff.c b/libavcodec/iff.c index 47f491b4e8..a8e64268ee 100644 --- a/libavcodec/iff.c +++ b/libavcodec/iff.c @@ -93,7 +93,7 @@ static av_cold int decode_init(AVCodecContext *avctx) * @param plane plane number to decode as */ #define DECLARE_DECODEPLANE(suffix, type) \ -static void decodeplane##suffix(void *dst, const uint8_t const *buf, int buf_size, int bps, int plane) \ +static void decodeplane##suffix(void *dst, const uint8_t *const buf, int buf_size, int bps, int plane) \ { \ GetBitContext gb; \ int i, b; \