From 1e39f6ea0eb29562b461e620f82580fbcd3a6747 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 18 Aug 2009 14:45:23 +0200 Subject: [PATCH] tools: Use iterate_internal_links instead of deprecated get_internal_links --- tools/gst-inspect.c | 6 +++--- tools/gst-xmlinspect.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index a286ce82bd..7604e47162 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c @@ -804,9 +804,9 @@ print_pad_info (GstElement * element) print_query_types (gst_pad_get_query_types (pad)); } - if (pad->intlinkfunc != gst_pad_get_internal_links_default) - n_print (" Has custom intconnfunc(): %s\n", - GST_DEBUG_FUNCPTR_NAME (pad->intlinkfunc)); + if (pad->iterintlinkfunc != gst_pad_iterate_internal_links_default) + n_print (" Has custom iterintlinkfunc(): %s\n", + GST_DEBUG_FUNCPTR_NAME (pad->iterintlinkfunc)); if (pad->bufferallocfunc) n_print (" Has bufferallocfunc(): %s\n", diff --git a/tools/gst-xmlinspect.c b/tools/gst-xmlinspect.c index 6ee6e31174..c683557d2b 100644 --- a/tools/gst-xmlinspect.c +++ b/tools/gst-xmlinspect.c @@ -583,9 +583,9 @@ print_element_info (GstElementFactory * factory) PUT_END_TAG (4, "query-type-func"); } - if (pad->intlinkfunc != gst_pad_get_internal_links_default) - PUT_STRING (4, "", - GST_DEBUG_FUNCPTR_NAME (pad->intlinkfunc)); + if (pad->iterintlinkfunc != gst_pad_iterate_internal_links_default) + PUT_STRING (4, "", + GST_DEBUG_FUNCPTR_NAME (pad->iterintlinkfunc)); if (pad->bufferallocfunc) PUT_STRING (4, "",