[vlc-commits] fourcc: fix empty initializer
    Felix Abecassis 
    git at videolan.org
       
    Sat Nov 30 14:30:47 CET 2013
    
    
  
vlc | branch: master | Felix Abecassis <felix.abecassis at gmail.com> | Fri Nov 29 17:43:10 2013 +0100| [4b48516d6a017c2b6b30de4c91634a045fba45ef] | committer: Rémi Denis-Courmont
fourcc: fix empty initializer
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4b48516d6a017c2b6b30de4c91634a045fba45ef
---
 src/misc/fourcc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/misc/fourcc.c b/src/misc/fourcc.c
index 5cd04fd..8cd821a 100644
--- a/src/misc/fourcc.c
+++ b/src/misc/fourcc.c
@@ -2004,7 +2004,7 @@ static const struct
         VLC_CODEC_VDPAU_VIDEO_444,
         VLC_CODEC_VDPAU_OUTPUT, 0 },           FAKE_FMT() },
 
-    { {0}, { 0, {}, 0, 0 } }
+    { {0}, { 0, { 0 }, 0, 0 } }
 };
 
 #undef PACKED_FMT
    
    
More information about the vlc-commits
mailing list