mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-08 23:42:28 +00:00
inputselector: fix build with debug cached buffers enabled
gstinputselector.c:818:5: error: format not a string literal and no format arguments [-Werror=format-security]
This commit is contained in:
parent
37670af79c
commit
e06f9667b0
1 changed files with 1 additions and 1 deletions
|
@ -812,7 +812,7 @@ gst_input_selector_debug_cached_buffers (GstInputSelector * sel)
|
||||||
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (cached_buffer->buffer)));
|
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (cached_buffer->buffer)));
|
||||||
}
|
}
|
||||||
str = g_string_free (timestamps, FALSE);
|
str = g_string_free (timestamps, FALSE);
|
||||||
GST_DEBUG_OBJECT (selpad, str);
|
GST_DEBUG_OBJECT (selpad, "%s", str);
|
||||||
g_free (str);
|
g_free (str);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue