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.
This commit is contained in:
Stefan Kost 2007-09-23 18:57:14 +00:00
parent 85a436a654
commit dedf80a378
2 changed files with 9 additions and 2 deletions

View file

@ -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:

View file

@ -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);