From 7b16febb0d8a7f218dc91065fdbf51fcd268f9c5 Mon Sep 17 00:00:00 2001 From: Matej Knopp Date: Thu, 26 Jan 2012 03:02:48 -0500 Subject: [PATCH] nettimepacket: fix printf format warning in debug message https://bugzilla.gnome.org/show_bug.cgi?id=664491 --- libs/gst/net/gstnettimepacket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gst/net/gstnettimepacket.c b/libs/gst/net/gstnettimepacket.c index 597199ebf8..f4667f69e3 100644 --- a/libs/gst/net/gstnettimepacket.c +++ b/libs/gst/net/gstnettimepacket.c @@ -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);