mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
discoverer: fix c99-ism
This commit is contained in:
parent
8b18508778
commit
0778efcfde
1 changed files with 3 additions and 3 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue