mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
ges: fix printf arguments in debug message
https://bugzilla.gnome.org/show_bug.cgi?id=675547
This commit is contained in:
parent
2e52fe15f0
commit
ea254c4621
1 changed files with 2 additions and 1 deletions
|
@ -537,7 +537,8 @@ remove_smpte_from_bin (GESTrackVideoTransitionPrivate * priv, GstPad * sink)
|
||||||
|
|
||||||
if (smpte == NULL) {
|
if (smpte == NULL) {
|
||||||
gst_object_unref (smpte_src);
|
gst_object_unref (smpte_src);
|
||||||
GST_ERROR ("The pad %p has no parent element. This should not happen");
|
GST_ERROR ("The pad %" GST_PTR_FORMAT " has no parent element. "
|
||||||
|
"This should not happen", smpte_src);
|
||||||
return (NULL);
|
return (NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue