Commit d89e58f5 authored by Vittorio Giovara's avatar Vittorio Giovara

dct-test: Fix initialization syntax

Related to "warning: suggest braces around initialization of subobject".
parent bb770168
...@@ -84,8 +84,8 @@ static const struct algo idct_tab[] = { ...@@ -84,8 +84,8 @@ static const struct algo idct_tab[] = {
#elif ARCH_X86 #elif ARCH_X86
#include "x86/dct-test.c" #include "x86/dct-test.c"
#else #else
static const struct algo fdct_tab_arch[] = { 0 }; static const struct algo fdct_tab_arch[] = { { 0 } };
static const struct algo idct_tab_arch[] = { 0 }; static const struct algo idct_tab_arch[] = { { 0 } };
#endif #endif
#define AANSCALE_BITS 12 #define AANSCALE_BITS 12
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment