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; } }