summaryrefslogtreecommitdiffstats
path: root/sys/oss
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2007-09-23 18:57:14 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2007-09-23 18:57:14 +0000
commitdedf80a378fa091f511a2fdd5484888e7a4dcb04 (patch)
treeb09498d03e3a7f077c56c0ee1b90994ae8434a7f /sys/oss
parent85a436a65464b455bbfa4c50af26333b9323af28 (diff)
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.
Diffstat (limited to 'sys/oss')
-rw-r--r--sys/oss/gstosshelper.c5
1 files changed, 3 insertions, 2 deletions
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);