summaryrefslogtreecommitdiffstats
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
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.
-rw-r--r--ChangeLog6
-rw-r--r--sys/oss/gstosshelper.c5
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 30994942..052c53e5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-09-23 Stefan Kost <ensonic@users.sf.net>
+
+ * sys/oss/gstosshelper.c:
+ Use GST_WARNING instead of a g_critical. This situation is not caused
+ by the application.
+
2007-09-22 Thomas Vander Stichele <thomas at apestaart dot org>
* po/LINGUAS:
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);