Re: [libav-devel] [PATCH] dcc-test: Fix initialization syntax

2015-02-06 Thread Diego Biurrun
On Fri, Feb 06, 2015 at 06:38:44PM +, Vittorio Giovara wrote: Related to warning: suggest braces around initialization of subobject. That's clang? I get libavcodec/dct-test.c:87:21: warning: missing braces around initializer [-Wmissing-braces] Patch OK, but fix the typo in the log

Re: [libav-devel] [PATCH] dcc-test: Fix initialization syntax

2015-02-06 Thread Diego Biurrun
On Fri, Feb 06, 2015 at 08:19:36PM +0100, wm4 wrote: On Fri, 6 Feb 2015 18:38:44 + Vittorio Giovara vittorio.giov...@gmail.com wrote: Related to warning: suggest braces around initialization of subobject. --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -84,8 +84,8 @@

Re: [libav-devel] [PATCH] dcc-test: Fix initialization syntax

2015-02-06 Thread wm4
On Fri, 6 Feb 2015 18:38:44 + Vittorio Giovara vittorio.giov...@gmail.com wrote: Related to warning: suggest braces around initialization of subobject. --- libavcodec/dct-test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/dct-test.c

[libav-devel] [PATCH] dcc-test: Fix initialization syntax

2015-02-06 Thread Vittorio Giovara
Related to warning: suggest braces around initialization of subobject. --- libavcodec/dct-test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index f337576..d3233f3 100644 --- a/libavcodec/dct-test.c +++