summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-01-11 11:36:53 +0000
committerTim-Philipp Müller <tim@centricular.com>2018-01-26 11:10:23 +0000
commitb43f88fef6044aa77264a6f743fe681061de0974 (patch)
tree1c6326f4d85d58692ce70978e1ff91f059e97080
parentd2dee2d808f1411a454c90070939b7dd4881273e (diff)
downloadgstreamer-b43f88fef6044aa77264a6f743fe681061de0974.tar.gz
info: reset default threshold to LEVEL_DEFAULT not 0
in set_threshold_from_string().
-rw-r--r--gst/gstinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstinfo.c b/gst/gstinfo.c
index c13a057400..1010a1acb0 100644
--- a/gst/gstinfo.c
+++ b/gst/gstinfo.c
@@ -1990,7 +1990,7 @@ gst_debug_set_threshold_from_string (const gchar * list, gboolean reset)
g_assert (list);
if (reset)
- gst_debug_set_default_threshold (0);
+ gst_debug_set_default_threshold (GST_LEVEL_DEFAULT);
split = g_strsplit (list, ",", 0);