mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
typefinding: fix log function printf format issue
This commit is contained in:
parent
d4269515fa
commit
261a1447fa
1 changed files with 1 additions and 1 deletions
|
@ -2624,7 +2624,7 @@ jpeg_type_find (GstTypeFind * tf, gpointer unused)
|
|||
len = GST_READ_UINT16_BE (c.data);
|
||||
|
||||
GST_LOG ("possible JPEG marker 0x%02x (@0x%04x), segment length %u",
|
||||
marker, c.offset, len);
|
||||
marker, (guint) c.offset, len);
|
||||
|
||||
if (!data_scan_ctx_ensure_data (tf, &c, len))
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue