diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2007-05-20 14:05:42 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-05-20 14:05:42 +0000 |
commit | 263e0458f171b907b66c340b7b13da9beaaec8af (patch) | |
tree | 8981909796d0bdc291ab6fbb297dfcf574e7a7ad | |
parent | 4e45e0a2690605843115abbbde06ca00a8da8584 (diff) |
gst/rtsp/gstrtspsrc.c: Printf format fix.
Original commit message from CVS:
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
Printf format fix.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/rtsp/gstrtspsrc.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-05-20 Tim-Philipp Müller <tim at centricular dot net> + + * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp): + Printf format fix. + 2007-05-18 Wim Taymans <wim@fluendo.com> * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams): diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index e274130b..18c04213 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -2385,7 +2385,7 @@ gst_rtspsrc_loop_udp (GstRTSPSrc * src) rtsp_connection_next_timeout (src->connection, &tv_timeout); GST_DEBUG_OBJECT (src, "doing receive with timeout %d seconds", - tv_timeout.tv_sec); + (gint) tv_timeout.tv_sec); /* we should continue reading the TCP socket because the server might * send us requests. When the session timeout expires, we need to send a |