diff options
author | Luis de Bethencourt <luis.bg@samsung.com> | 2015-02-25 16:11:06 +0000 |
---|---|---|
committer | Luis de Bethencourt <luis.bg@samsung.com> | 2015-02-25 16:11:06 +0000 |
commit | 4245658d28ffb5e2e6fce2d21eab2d94ba1f0b86 (patch) | |
tree | 59ae3d7beed5f63de44f21da8244d149ef60760a | |
parent | 5f027ae4539b4f642071cc665259d2b06731f13d (diff) |
gstutils: remove incorrect Fixme comment
If the checks were changed to using g_return_if_fail() the GST_DEBUG lines
about the specific failure would be lost.
-rw-r--r-- | gst/gstutils.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gst/gstutils.c b/gst/gstutils.c index abc7b5ded..54b2d80b2 100644 --- a/gst/gstutils.c +++ b/gst/gstutils.c @@ -931,7 +931,6 @@ gst_pad_check_link (GstPad * srcpad, GstPad * sinkpad) GST_CAT_INFO (GST_CAT_PADS, "trying to link %s:%s and %s:%s", GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (sinkpad)); - /* FIXME: shouldn't we convert this to g_return_val_if_fail? */ if (GST_PAD_PEER (srcpad) != NULL) { GST_CAT_INFO (GST_CAT_PADS, "Source pad %s:%s has a peer, failed", GST_DEBUG_PAD_NAME (srcpad)); |