From 9f04b80b90d272e53acd3ed58d3c0468503b0596 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 21 Sep 2007 14:37:26 +0000 Subject: [PATCH] gst/playback/gstqueue2.c: Fix compilation wrt printf arguments. Original commit message from CVS: * gst/playback/gstqueue2.c: (gst_queue_push_one): Fix compilation wrt printf arguments. --- ChangeLog | 5 +++++ gst/playback/gstqueue2.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a37a932e53..7bd328b7d5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-09-21 Wim Taymans + + * gst/playback/gstqueue2.c: (gst_queue_push_one): + Fix compilation wrt printf arguments. + 2007-09-20 Wim Taymans * configure.ac: diff --git a/gst/playback/gstqueue2.c b/gst/playback/gstqueue2.c index 437f44d0bc..f78fca2e56 100644 --- a/gst/playback/gstqueue2.c +++ b/gst/playback/gstqueue2.c @@ -1387,7 +1387,7 @@ next: if (type == GST_EVENT_EOS || type == GST_EVENT_NEWSEGMENT) { /* we found a pushable item in the queue, push it out */ GST_CAT_LOG_OBJECT (queue_dataflow, queue, - "pushing pushable event %s after UNEXPECTED %p", + "pushing pushable event %s after UNEXPECTED", GST_EVENT_TYPE_NAME (event)); goto next; }