mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
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:
parent
9c335ec185
commit
c272d8d9fb
1 changed files with 2 additions and 2 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Reference in a new issue