From: Michael Catanzaro Date: Mon, 11 Dec 2017 21:27:08 +0000 (-0600) Subject: equalizer: Fix -Wincompatible-pointer-types warning X-Git-Tag: 1.19.3~509^2~1786 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d9235cdb498da2070193e33dcad29c42d20a219f;p=platform%2Fupstream%2Fgstreamer.git 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 --- diff --git a/gst/equalizer/gstiirequalizer.c b/gst/equalizer/gstiirequalizer.c index eb23d21..210296b 100644 --- a/gst/equalizer/gstiirequalizer.c +++ b/gst/equalizer/gstiirequalizer.c @@ -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);