From 98fb7c070f1a2d15d27b2b5ee20adaa110d7c0dd Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 17 Aug 2007 15:28:40 +0000 Subject: [PATCH] gst/rtsp/gstrtspsrc.c: Fix stray %u in debug line as spotted by Saur on IRC. Original commit message from CVS: * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_stream_eos): Fix stray %u in debug line as spotted by Saur on IRC. --- ChangeLog | 5 +++++ gst/rtsp/gstrtspsrc.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 808416d4d6..5bc1d0c2bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-08-17 Wim Taymans + + * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_stream_eos): + Fix stray %u in debug line as spotted by Saur on IRC. + 2007-08-17 Sebastian Dröge * gst/audiofx/audiochebyshevfreqband.c: diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index d5728a63b3..e0d8fcf7d3 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -1518,7 +1518,7 @@ unknown_stream: } was_eos: { - GST_DEBUG_OBJECT (src, "stream for session %u was EOS already %u", session); + GST_DEBUG_OBJECT (src, "stream for session %u was already EOS", session); return; } }