gst/gstregistrybinary.c: Fix print statement in an even more portable way.
authorEdward Hervey <bilboed@bilboed.com>
Mon, 29 Jan 2007 15:02:11 +0000 (15:02 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Mon, 29 Jan 2007 15:02:11 +0000 (15:02 +0000)
Original commit message from CVS:
* gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
Fix print statement in an even more portable way.

ChangeLog
gst/gstregistrybinary.c

index 808c563eabdb59f798513a072435246b36cefb48..0904bf0d568e595de05eb9bb2daf4c26836f05ec 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-29  Edward Hervey  <edward@fluendo.com>
+
+       * gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
+       Fix print statement in an even more portable way.
+
 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
 
        * docs/gst/gstreamer-sections.txt:
index 85442579463536e631bab41635e3df26d22b6ddf..8fcbe83c92924f67a5f02e9556a6fc6364ebc41c 100644 (file)
@@ -784,8 +784,8 @@ gst_registry_binary_read_cache (GstRegistry * registry, const char *location)
   for (;
       ((size_t) in + sizeof (GstBinaryPluginElement)) <
       (size_t) contents + size;) {
-    GST_INFO ("reading binary registry %ld(%x)/%ld",
-        (size_t) in - (size_t) contents,
+    GST_INFO ("reading binary registry %" G_GSIZE_FORMAT "(%x)/%"
+        G_GSIZE_FORMAT, (size_t) in - (size_t) contents,
         (guint) ((size_t) in - (size_t) contents), size);
     if (!gst_registry_binary_load_plugin (registry, &in)) {
       GST_ERROR ("Problem while reading binary registry");