From ed761920ca7a6803485a74bb3a08a3762b5951b4 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sat, 14 Feb 2015 09:35:56 +0100 Subject: [PATCH] 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 4e5f04de7b4..de48efda129 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;