From: Edward Hervey Date: Tue, 12 Jan 2010 16:39:05 +0000 (+0100) Subject: qtdemux: use G_GSIZE_FORMAT for platform independent gsize qualifier X-Git-Tag: 1.19.3~509^2~9256 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3f5add8820312728bcea4e625f5643e7c4ba3b11;p=platform%2Fupstream%2Fgstreamer.git qtdemux: use G_GSIZE_FORMAT for platform independent gsize qualifier Fixes build on macosx --- 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);