From e47f76f8d067fd67f5f76bac9807dba0e742f698 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 3 Jun 2002 22:18:57 +0000 Subject: Fix the compile error Original commit message from CVS: Fix the compile error --- examples/seeking/seek.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'examples/seeking') diff --git a/examples/seeking/seek.c b/examples/seeking/seek.c index 4795693b..0a72cdc7 100644 --- a/examples/seeking/seek.c +++ b/examples/seeking/seek.c @@ -93,10 +93,10 @@ make_mp3_pipeline (const gchar *location) pipeline = gst_pipeline_new ("app"); - src = gst_element_factory_make_or_warn ("filesrc", "src"); - decoder = gst_element_factory_make_or_warn ("mad", "dec"); - osssink = gst_element_factory_make_or_warn ("osssink", "sink"); - queue = gst_element_factory_make_or_warn ("queue", "queue"); + src = gst_element_factory_make ("filesrc", "src"); + decoder = gst_element_factory_make ("mad", "dec"); + osssink = gst_element_factory_make ("osssink", "sink"); + queue = gst_element_factory_make ("queue", "queue"); thread = gst_thread_new ("playback"); g_object_set (G_OBJECT (src), "location", location, NULL); -- cgit v1.2.1