Thomas Faber : winegstreamer: Avoid empty initializer braces.
Module: wine Branch: master Commit: ed761920ca7a6803485a74bb3a08a3762b5951b4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ed761920ca7a6803485a74bb3a... Author: Thomas Faber <thomas.faber(a)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;
participants (1)
-
Alexandre Julliard