mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
equalizer: Fix -Wincompatible-pointer-types warning
This is caused by the new type propagation for g_object_ref. https://bugzilla.gnome.org/show_bug.cgi?id=791494
This commit is contained in:
parent
c6b686624a
commit
d9235cdb49
1 changed files with 1 additions and 1 deletions
|
@ -323,7 +323,7 @@ gst_iir_equalizer_child_proxy_get_child_by_index (GstChildProxy * child_proxy,
|
|||
g_return_val_if_fail (index < equ->freq_band_count, NULL);
|
||||
}
|
||||
|
||||
ret = g_object_ref (equ->bands[index]);
|
||||
ret = g_object_ref (G_OBJECT (equ->bands[index]));
|
||||
BANDS_UNLOCK (equ);
|
||||
|
||||
GST_LOG_OBJECT (equ, "return child[%d] %" GST_PTR_FORMAT, index, ret);
|
||||
|
|
Loading…
Reference in a new issue