From: Marc Leeman Date: Wed, 16 Apr 2014 11:47:43 +0000 (+0200) Subject: udpsrc: correct LOG msg for -1 X-Git-Tag: 1.19.3~509^2~4683 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5b4681dfe787be8d9ec2197346315e2d9630a585;p=platform%2Fupstream%2Fgstreamer.git udpsrc: correct LOG msg for -1 Signed-off-by: Marc Leeman --- diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c index 0a8d7ea..774e272 100644 --- a/gst/udp/gstudpsrc.c +++ b/gst/udp/gstudpsrc.c @@ -424,8 +424,7 @@ retry: else timeout = -1; - GST_LOG_OBJECT (udpsrc, "doing select, timeout %" G_GUINT64_FORMAT, - timeout); + GST_LOG_OBJECT (udpsrc, "doing select, timeout %" G_GINT64_FORMAT, timeout); if (!g_socket_condition_timed_wait (udpsrc->used_socket, G_IO_IN | G_IO_PRI, timeout, udpsrc->cancellable, &err)) {