summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorEdward Hervey <edward@centricular.com>2017-11-25 13:07:12 +0100
committerEdward Hervey <bilboed@bilboed.com>2017-11-25 13:07:12 +0100
commita066522ad961d800dca88fef8d0c677ef226897e (patch)
treeffaee99e41610e5d034512cc4a67b680afb46af8 /gst
parent4ac09c73f6e28e104f3c151f88cad4a8928e04a1 (diff)
gstinfo: Use free instead of g_free
Because
Diffstat (limited to 'gst')
-rw-r--r--gst/gstinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstinfo.c b/gst/gstinfo.c
index 49694e649..6500f2249 100644
--- a/gst/gstinfo.c
+++ b/gst/gstinfo.c
@@ -2751,7 +2751,7 @@ generate_backtrace_trace (void)
for (j = 0; j < nptrs; j++)
g_string_append_printf (trace, "%s\n", strings[j]);
- g_free (strings);
+ free (strings);
return g_string_free (trace, FALSE);
}