mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 17:50:36 +00:00
pad: Fix printf format when printing hook id
It's a gulong so we have to cast it to a guint64 when using it with G_GUINT64_FORMAT. Spotted by Vincent Penvern.
This commit is contained in:
parent
e0c9b04538
commit
a143d9cb0c
1 changed files with 2 additions and 2 deletions
|
@ -1373,8 +1373,8 @@ cleanup_hook (GstPad * pad, GHook * hook)
|
|||
GstPadProbeType type;
|
||||
|
||||
GST_DEBUG_OBJECT (pad,
|
||||
"cleaning up hook %" G_GUINT64_FORMAT " with flags %08x", hook->hook_id,
|
||||
hook->flags);
|
||||
"cleaning up hook %" G_GUINT64_FORMAT " with flags %08x",
|
||||
(guint64) hook->hook_id, hook->flags);
|
||||
|
||||
if (!G_HOOK_IS_VALID (hook))
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue