From 1494e4eabaa5f6504f4863155d23174100788e5a Mon Sep 17 00:00:00 2001 From: David Schleef Date: Tue, 31 May 2011 20:38:56 -0700 Subject: [PATCH] discoverer: fix c99-ism --- gst-libs/gst/pbutils/gstdiscoverer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst-libs/gst/pbutils/gstdiscoverer.c b/gst-libs/gst/pbutils/gstdiscoverer.c index 58d3e5288b..6eda2508be 100644 --- a/gst-libs/gst/pbutils/gstdiscoverer.c +++ b/gst-libs/gst/pbutils/gstdiscoverer.c @@ -1023,9 +1023,9 @@ handle_current_async (GstDiscoverer * dc) { GSource *source; static GSourceCallbackFuncs cb_funcs = { - .ref = _void_g_object_ref, - .unref = g_object_unref, - .get = get_async_cb, + _void_g_object_ref, + g_object_unref, + get_async_cb, }; /* Attach a timeout to the main context */ -- 2.34.1