Use G_GSIZE_FORMAT instead of the C99 "zu".
authorTor Lillqvist <tml@novell.com>
Thu, 24 Jul 2008 00:50:08 +0000 (00:50 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Thu, 24 Jul 2008 00:50:08 +0000 (00:50 +0000)
2008-07-24  Tor Lillqvist  <tml@novell.com>

* glib/gslice.c (smc_notify_free): Use G_GSIZE_FORMAT instead of
the C99 "zu".

svn path=/trunk/; revision=7249

ChangeLog
glib/gslice.c

index 5672ce8dfef2c3be9e1b0e697f123746d74d0ca4..6a1bb10c106573d1313e79544578c9a5d10b3458 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-07-24  Tor Lillqvist  <tml@novell.com>
+
+       * glib/gslice.c (smc_notify_free): Use G_GSIZE_FORMAT instead of
+       the C99 "zu".
+
 2008-07-24  Tor Lillqvist  <tml@novell.com>
 
        * configure.in: Must output the GLIB_USING_SYSTEM_PRINTF to
index 5bad65e53c04d8257d9a0434245d72c6d49022be..70f9efa6841beda50d9abad012f5b75a5febaf62 100644 (file)
@@ -1245,17 +1245,17 @@ smc_notify_free (void   *pointer,
   found_one = smc_tree_lookup (adress, &real_size);
   if (!found_one)
     {
-      fprintf (stderr, "GSlice: MemChecker: attempt to release non-allocated block: %p size=%zu\n", pointer, size);
+      fprintf (stderr, "GSlice: MemChecker: attempt to release non-allocated block: %p size=%" G_GSIZE_FORMAT "\n", pointer, size);
       return 0;
     }
   if (real_size != size && (real_size || size))
     {
-      fprintf (stderr, "GSlice: MemChecker: attempt to release block with invalid size: %p size=%zu invalid-size=%zu\n", pointer, real_size, size);
+      fprintf (stderr, "GSlice: MemChecker: attempt to release block with invalid size: %p size=%" G_GSIZE_FORMAT " invalid-size=%" G_GSIZE_FORMAT "\n", pointer, real_size, size);
       return 0;
     }
   if (!smc_tree_remove (adress))
     {
-      fprintf (stderr, "GSlice: MemChecker: attempt to release non-allocated block: %p size=%zu\n", pointer, size);
+      fprintf (stderr, "GSlice: MemChecker: attempt to release non-allocated block: %p size=%" G_GSIZE_FORMAT "\n", pointer, size);
       return 0;
     }
   return 1; /* all fine */