From 8fe34426cb226c78d3f77fe91d0a293b4db9de2c 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. --- gst/playback/gstqueue2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/playback/gstqueue2.c b/gst/playback/gstqueue2.c index d512d80..a221e68 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 */ -- 2.7.4