mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 12:41:05 +00:00
qtglrenderer.cc: Fix -Wformat-security warning
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/592>
This commit is contained in:
parent
fbd4afc64c
commit
46bfb7d247
1 changed files with 1 additions and 1 deletions
|
@ -721,7 +721,7 @@ bool GstQuickRenderer::setQmlScene (const gchar * scene, GError ** error)
|
|||
|
||||
if (m_errorString != "") {
|
||||
g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_SETTINGS,
|
||||
m_errorString.toUtf8());
|
||||
"%s", m_errorString.toUtf8());
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue