From 60210e4ede778875d175c539a417a2f97266cc87 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sat, 14 Dec 2002 15:00:08 +0000 Subject: [PATCH] Fix compile error cache->index Original commit message from CVS: Fix compile error cache->index --- tools/gst-inspect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index a37f7847e6..0af83533a2 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c @@ -590,7 +590,7 @@ print_element_info (GstElementFactory *factory) } g_print ("\nCaching capabilities:\n"); - if (gst_element_is_cachable (element)) { + if (gst_element_is_indexable (element)) { g_print (" element can do caching\n"); } else {