filesrc: printf format fixes
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
Tue, 15 Dec 2009 17:55:38 +0000 (18:55 +0100)
committerMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
Tue, 15 Dec 2009 17:55:38 +0000 (18:55 +0100)
plugins/elements/gstfilesrc.c

index d69167a66392bb940fab500d93852af23ebf74c2..792cd0daa079a0478a3ee89d551c047c227a948d 100644 (file)
@@ -585,8 +585,9 @@ gst_file_src_map_region (GstFileSrc * src, off_t offset, gsize size,
 
   g_return_val_if_fail (offset >= 0, NULL);
 
-  GST_LOG_OBJECT (src, "mapping region %08" G_GOFFSET_MODIFIER "x+%08lx "
-      "from file into memory", (goffset) offset, (gulong) size);
+  /* FIXME ? use goffset and friends if we require glib >= 2.20 */
+  GST_LOG_OBJECT (src, "mapping region %08" G_GINT64_MODIFIER "x+%08lx "
+      "from file into memory", (gint64) offset, (gulong) size);
 
   mmapregion = mmap (NULL, size, PROT_READ, MAP_SHARED, src->fd, offset);