From dedf80a378fa091f511a2fdd5484888e7a4dcb04 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Sun, 23 Sep 2007 18:57:14 +0000 Subject: sys/oss/gstosshelper.c: Use GST_WARNING instead of a g_critical. This situation is not caused by the application. Original commit message from CVS: * sys/oss/gstosshelper.c: Use GST_WARNING instead of a g_critical. This situation is not caused by the application. --- sys/oss/gstosshelper.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/oss') diff --git a/sys/oss/gstosshelper.c b/sys/oss/gstosshelper.c index 192a2068..38b36893 100644 --- a/sys/oss/gstosshelper.c +++ b/sys/oss/gstosshelper.c @@ -154,9 +154,10 @@ gst_oss_helper_probe_caps (gint fd) } } - if (gst_caps_is_empty (caps)) + if (gst_caps_is_empty (caps)) { /* fixme: make user-visible */ - g_critical ("Your OSS device could not be probed correctly"); + GST_WARNING ("Your OSS device could not be probed correctly"); + } GST_DEBUG ("probed caps: %" GST_PTR_FORMAT, caps); -- cgit