summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2007-08-17 15:28:40 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-08-17 15:28:40 +0000
commit98fb7c070f1a2d15d27b2b5ee20adaa110d7c0dd (patch)
tree53c1a6c1a866b0d00e9160d52338f8efe2fb5253
parent1301d15e4f8991ecb8384f27fc26940c25f25712 (diff)
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.
-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;
}
}