Thomas Faber : winegstreamer: Avoid empty initializer braces.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Feb 17 10:14:40 CST 2015


Module: wine
Branch: master
Commit: ed761920ca7a6803485a74bb3a08a3762b5951b4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ed761920ca7a6803485a74bb3a08a3762b5951b4

Author: Thomas Faber <thomas.faber at reactos.org>
Date:   Sat Feb 14 09:35:56 2015 +0100

winegstreamer: Avoid empty initializer braces.

---

 dlls/winegstreamer/gstdemux.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c
index 4e5f04d..de48efd 100644
--- a/dlls/winegstreamer/gstdemux.c
+++ b/dlls/winegstreamer/gstdemux.c
@@ -707,7 +707,7 @@ static void init_new_decoded_pad(GstElement *bin, GstPad *pad, gboolean last, GS
     PIN_INFO piOutput;
     const char *typename;
     char *name;
-    AM_MEDIA_TYPE amt = { };
+    AM_MEDIA_TYPE amt = {{0}};
     GstCaps *caps;
     GstStructure *arg;
     GstPad *mypad;




More information about the wine-cvs mailing list