mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
queue2: use g_strerror() instead of strerror()
Need UTF-8 encoding.
This commit is contained in:
parent
8924782dd4
commit
d5c2439f08
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue