From ee2dfa34a25e0c5bf85f464be64e5bc78489abf9 Mon Sep 17 00:00:00 2001 From: Martin Vignali Date: Sat, 28 Oct 2017 23:15:23 +0200 Subject: libavcodec/magicyuvenc : fix warning --- libavcodec/magicyuvenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec') diff --git a/libavcodec/magicyuvenc.c b/libavcodec/magicyuvenc.c index a30922f570..c784221e1c 100644 --- a/libavcodec/magicyuvenc.c +++ b/libavcodec/magicyuvenc.c @@ -337,7 +337,7 @@ static int encode_table(AVCodecContext *avctx, uint8_t *dst, int width, int height, PutBitContext *pb, HuffEntry *he) { - PTable counts[256] = { 0 }; + PTable counts[256] = { {0} }; int i; count_usage(dst, width, height, counts); -- cgit v1.2.3