mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
ghostpad: fix print format
This commit is contained in:
parent
6e0a724394
commit
fda5685a15
1 changed files with 2 additions and 2 deletions
|
@ -538,7 +538,7 @@ gst_ghost_pad_internal_activate_mode_default (GstPad * pad, GstObject * parent,
|
|||
res = gst_ghost_pad_internal_activate_push_default (pad, parent, active);
|
||||
break;
|
||||
default:
|
||||
GST_LOG_OBJECT (pad, "unknown activation mode %d");
|
||||
GST_LOG_OBJECT (pad, "unknown activation mode %d", mode);
|
||||
res = FALSE;
|
||||
break;
|
||||
}
|
||||
|
@ -623,7 +623,7 @@ gst_ghost_pad_activate_mode_default (GstPad * pad, GstObject * parent,
|
|||
res = gst_ghost_pad_activate_push_default (pad, parent, active);
|
||||
break;
|
||||
default:
|
||||
GST_LOG_OBJECT (pad, "unknown activation mode %d");
|
||||
GST_LOG_OBJECT (pad, "unknown activation mode %d", mode);
|
||||
res = FALSE;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue