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