diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-11-05 23:40:15 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-11-05 23:40:15 +0000 |
commit | 4b1566d7f3893e7f84655b3d7dceea504daf2cdf (patch) | |
tree | e3e3d4cbbfc3a1396e7c5eda0fa1267a1673a65f | |
parent | feed8c2af3d1b00e53a09fb51de9b0b22e012fdf (diff) |
equalizer: printf format fix
-rw-r--r-- | gst/equalizer/gstiirequalizer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/equalizer/gstiirequalizer.c b/gst/equalizer/gstiirequalizer.c index ad3516d26..48a546166 100644 --- a/gst/equalizer/gstiirequalizer.c +++ b/gst/equalizer/gstiirequalizer.c @@ -338,7 +338,7 @@ gst_iir_equalizer_child_proxy_get_child_by_index (GstChildProxy * child_proxy, ret = gst_object_ref (equ->bands[index]); BANDS_UNLOCK (equ); - GST_LOG ("return child[%d] '%s'", index, ret); + GST_LOG_OBJECT (equ, "return child[%d] %" GST_PTR_FORMAT, index, ret); return ret; } |