From 3f5add8820312728bcea4e625f5643e7c4ba3b11 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Tue, 12 Jan 2010 17:39:05 +0100 Subject: [PATCH] qtdemux: use G_GSIZE_FORMAT for platform independent gsize qualifier Fixes build on macosx --- gst/qtdemux/qtdemux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 899ddac..a6b5013 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -4156,7 +4156,8 @@ qtdemux_stbl_init (GstQTDemux * qtdemux, QtDemuxStream * stream, GNode * stbl) return FALSE; } - GST_DEBUG_OBJECT (qtdemux, "allocating n_samples %u * %d = (%u MB)", + GST_DEBUG_OBJECT (qtdemux, + "allocating n_samples %u * %" G_GSIZE_FORMAT " = (%u MB)", stream->n_samples, sizeof (QtDemuxSample), (guint) (stream->n_samples * sizeof (QtDemuxSample)) >> 20); -- 2.7.4