summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--gst/rtsp/gstrtspsrc.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 808416d4..5bc1d0c2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-08-17 Wim Taymans <wim.taymans@gmail.com>
+
+ * 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 <slomo@circular-chaos.org>
* gst/audiofx/audiochebyshevfreqband.c:
diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c
index d5728a63..e0d8fcf7 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;
}
}