mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 18:20:44 +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;
|
GSource *source;
|
||||||
static GSourceCallbackFuncs cb_funcs = {
|
static GSourceCallbackFuncs cb_funcs = {
|
||||||
.ref = _void_g_object_ref,
|
_void_g_object_ref,
|
||||||
.unref = g_object_unref,
|
g_object_unref,
|
||||||
.get = get_async_cb,
|
get_async_cb,
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Attach a timeout to the main context */
|
/* Attach a timeout to the main context */
|
||||||
|
|
Loading…
Reference in a new issue