From 80287854c2ac2ace8045d9e157459b46dc292dde Mon Sep 17 00:00:00 2001
From: Nicolas George <nicolas.george@normalesup.org>
Date: Sun, 25 Sep 2011 13:24:40 +0200
Subject: [PATCH] libswr/rematrix: add braces to silence a warning.

Signed-off-by: Nicolas George <nicolas.george@normalesup.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
---
 libswresample/rematrix.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c
index f8ba737ae46..eaf7653735c 100644
--- a/libswresample/rematrix.c
+++ b/libswresample/rematrix.c
@@ -83,7 +83,7 @@ static int sane_layout(int64_t layout){
 
 int swr_rematrix_init(SwrContext *s){
     int i, j, in_i, out_i;
-    double matrix[64][64]={0};
+    double matrix[64][64]={{0}};
     int64_t unaccounted= s->in_ch_layout & ~s->out_ch_layout;
     double maxcoef=0;
 
-- 
GitLab