From d5c2439f08a6e9c539a3248493308b9f30567d4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 7 Apr 2014 17:49:14 +0100 Subject: [PATCH] queue2: use g_strerror() instead of strerror() Need UTF-8 encoding. --- plugins/elements/gstqueue2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/elements/gstqueue2.c b/plugins/elements/gstqueue2.c index 4feaf97741..f085abe3bf 100644 --- a/plugins/elements/gstqueue2.c +++ b/plugins/elements/gstqueue2.c @@ -1526,7 +1526,7 @@ gst_queue2_close_temp_location_file (GstQueue2 * queue) if (queue->temp_remove) { if (remove (queue->temp_location) < 0) { GST_WARNING_OBJECT (queue, "Failed to remove temporary file %s: %s", - queue->temp_location, strerror (errno)); + queue->temp_location, g_strerror (errno)); } }