diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-02-06 18:38:44 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-02-17 11:27:42 -0500 |
commit | d89e58f53939d91a88aa7042c94d9d1cd364da52 (patch) | |
tree | 53885c348ecb3fe5a2d866b4c6dbb15ed21e9b36 /libavcodec/dct-test.c | |
parent | bb7701684c7170dfd5f33a3c7d827265844619f2 (diff) | |
download | ffmpeg-d89e58f53939d91a88aa7042c94d9d1cd364da52.tar.gz |
dct-test: Fix initialization syntax
Related to "warning: suggest braces around initialization of subobject".
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r-- | libavcodec/dct-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index f337576836..d3233f310e 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -84,8 +84,8 @@ static const struct algo idct_tab[] = { #elif ARCH_X86 #include "x86/dct-test.c" #else -static const struct algo fdct_tab_arch[] = { 0 }; -static const struct algo idct_tab_arch[] = { 0 }; +static const struct algo fdct_tab_arch[] = { { 0 } }; +static const struct algo idct_tab_arch[] = { { 0 } }; #endif #define AANSCALE_BITS 12 |