mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 19:55:32 +00:00
oggdemux: printf format fixes
This commit is contained in:
parent
7fee2c0fe7
commit
f22b115804
1 changed files with 2 additions and 2 deletions
|
@ -718,7 +718,7 @@ gst_ogg_pad_submit_packet (GstOggPad * pad, ogg_packet * packet)
|
|||
&serialno, &type)) {
|
||||
|
||||
GST_WARNING_OBJECT (pad->ogg,
|
||||
"got skeleton packet for stream %08lx", serialno);
|
||||
"got skeleton packet for stream 0x%08x", serialno);
|
||||
|
||||
skel_pad = gst_ogg_chain_get_stream (pad->chain, serialno);
|
||||
if (skel_pad) {
|
||||
|
@ -738,7 +738,7 @@ gst_ogg_pad_submit_packet (GstOggPad * pad, ogg_packet * packet)
|
|||
|
||||
} else {
|
||||
GST_WARNING_OBJECT (pad->ogg,
|
||||
"found skeleton fisbone for an unknown stream %08lx", serialno);
|
||||
"found skeleton fisbone for an unknown stream 0x%08x", serialno);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue