From 646d43679922d255f2085b5a329bf63c0983c3ff Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Wed, 3 Mar 2010 21:50:21 +0200 Subject: [PATCH] gst: this is an internal function where we already ensure !NULL when calling --- gst/gst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gst.c b/gst/gst.c index 9d868c6065..b3a03c7aca 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -240,7 +240,7 @@ parse_debug_list (const gchar * list) gchar **split; gchar **walk; - g_return_if_fail (list != NULL); + g_assert (list); split = g_strsplit (list, ",", 0);