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'
This commit is contained in:
Josep Torra 2009-10-09 14:28:42 +02:00
parent 9c335ec185
commit c272d8d9fb

View file

@ -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)) {