mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
pcapparse: Fix format string compiler warning
This commit is contained in:
parent
8339ff458d
commit
beea027d19
1 changed files with 1 additions and 1 deletions
|
@ -469,7 +469,7 @@ gst_pcap_parse_chain (GstPad * pad, GstBuffer * buffer)
|
|||
|
||||
data = gst_adapter_peek (self->adapter, self->cur_packet_size);
|
||||
|
||||
GST_LOG_OBJECT (self, "examining packet size %d",
|
||||
GST_LOG_OBJECT (self, "examining packet size %" G_GINT64_FORMAT,
|
||||
self->cur_packet_size);
|
||||
|
||||
if (gst_pcap_parse_scan_frame (self, data, self->cur_packet_size,
|
||||
|
|
Loading…
Reference in a new issue