From be1f78d2e2b100a19e4063a9c82dddcd33dd6587 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 13 Jun 2007 18:20:57 +0000 Subject: [PATCH] gst/playback/gstqueue2.c: Fix build on MacOSX. Original commit message from CVS: * gst/playback/gstqueue2.c: (gst_queue_create_read): Fix build on MacOSX. --- ChangeLog | 5 +++++ gst/playback/gstqueue2.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 622a670e9f..ffc44f8971 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-06-13 Edward Hervey + + * gst/playback/gstqueue2.c: (gst_queue_create_read): + Fix build on MacOSX. + 2007-06-13 Wim Taymans * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet), diff --git a/gst/playback/gstqueue2.c b/gst/playback/gstqueue2.c index d512d80fcf..a221e68a13 100644 --- a/gst/playback/gstqueue2.c +++ b/gst/playback/gstqueue2.c @@ -823,7 +823,7 @@ gst_queue_create_read (GstQueue * queue, guint64 offset, guint length, /* this should not block */ GST_LOG_OBJECT (queue, "Reading %d bytes", length); res = fread (GST_BUFFER_DATA (buf), 1, length, queue->temp_file); - GST_LOG_OBJECT (queue, "read %d bytes", res); + GST_LOG_OBJECT (queue, "read %" G_GSIZE_FORMAT " bytes", res); if (G_UNLIKELY (res == 0)) { /* check for errors or EOF */