mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
nettimepacket: fix printf format warning in debug message
https://bugzilla.gnome.org/show_bug.cgi?id=664491
This commit is contained in:
parent
d09073b755
commit
7b16febb0d
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ receive_error:
|
|||
}
|
||||
short_packet:
|
||||
{
|
||||
GST_DEBUG ("someone sent us a short packet (%d < %d)",
|
||||
GST_DEBUG ("someone sent us a short packet (%" G_GSSIZE_FORMAT " < %d)",
|
||||
ret, GST_NET_TIME_PACKET_SIZE);
|
||||
g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_DATA,
|
||||
"short time packet (%d < %d)", (int) ret, GST_NET_TIME_PACKET_SIZE);
|
||||
|
|
Loading…
Reference in a new issue