From c272d8d9fb10bb0f7b7e8fe5fe7debc45addae81 Mon Sep 17 00:00:00 2001 From: Josep Torra Date: Fri, 9 Oct 2009 14:28:42 +0200 Subject: [PATCH] gnomevfssrc: fixes warnings in macosx warning: format '%llu' expects type 'long long unsigned int', but argument 8 has type 'GnomeVFSFileOffset' warning: format '%lld' expects type 'long long int', but argument 9 has type 'guint64' --- ext/gnomevfs/gstgnomevfssrc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/gnomevfs/gstgnomevfssrc.c b/ext/gnomevfs/gstgnomevfssrc.c index 6494545..9941208 100644 --- a/ext/gnomevfs/gstgnomevfssrc.c +++ b/ext/gnomevfs/gstgnomevfssrc.c @@ -609,8 +609,8 @@ gst_gnome_vfs_src_create (GstBaseSrc * basesrc, guint64 offset, guint size, src = GST_GNOME_VFS_SRC (basesrc); - GST_DEBUG ("now at %llu, reading from %lld, size %u", src->curoffset, offset, - size); + GST_DEBUG ("now at %" G_GUINT64_FORMAT ", reading from %" G_GUINT64_FORMAT + ", size %u", (guint64) src->curoffset, offset, size); /* seek if required */ if (G_UNLIKELY (src->curoffset != offset)) { -- 2.7.4