From 1bf6e565dde17ac5603565c2d719005d91d6f5bd Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 17 Feb 2009 12:03:10 +0000 Subject: cosmetics: 'const static' --> 'static const' to avoid warnings of the type "'static' is not at beginning of declaration" with -Wextra. Originally committed as revision 17391 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mimic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/mimic.c') diff --git a/libavcodec/mimic.c b/libavcodec/mimic.c index e30b682e69..a6ab090e2d 100644 --- a/libavcodec/mimic.c +++ b/libavcodec/mimic.c @@ -121,7 +121,7 @@ static av_cold int mimic_decode_init(AVCodecContext *avctx) return 0; } -const static int8_t vlcdec_lookup[9][64] = { +static const int8_t vlcdec_lookup[9][64] = { { 0, }, { -1, 1, }, { -3, 3, -2, 2, }, -- cgit v1.2.3