mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
qtmux: fix compile error
gst/quicktime/gstqtmoovrecover.c:268: warning: format not a string literal and no format arguments https://bugzilla.gnome.org/show_bug.cgi?id=612454
This commit is contained in:
parent
8d86f34871
commit
ae0d32843e
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ gst_qt_moov_recover_run (void *data)
|
||||||
end:
|
end:
|
||||||
GST_LOG_OBJECT (qtmr, "Finalizing task");
|
GST_LOG_OBJECT (qtmr, "Finalizing task");
|
||||||
if (err) {
|
if (err) {
|
||||||
GST_ELEMENT_ERROR (qtmr, RESOURCE, FAILED, (err->message), NULL);
|
GST_ELEMENT_ERROR (qtmr, RESOURCE, FAILED, ("%s", err->message), NULL);
|
||||||
g_error_free (err);
|
g_error_free (err);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue