Fix compiler warning in format string check.
authorStefan Kost <stefkost@src.gnome.org>
Sun, 22 Jun 2008 09:43:54 +0000 (09:43 +0000)
committerStefan Kost <stefkost@src.gnome.org>
Sun, 22 Jun 2008 09:43:54 +0000 (09:43 +0000)
* gobject/gsignal.c:
  Fix compiler warning in format string check.

svn path=/trunk/; revision=7084

ChangeLog
gobject/gsignal.c

index 334507e0a2a4e9a1c2761267b73052c8c7371ac5..284b05f4d28cf823f6460d6e0efd669065fc5bda 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-06-22  Stefan Kost  <ensonic@users.sf.net>
+
+       * gobject/gsignal.c:
+         Fix compiler warning in format string check.
+
 2008-06-22  Stefan Kost  <ensonic@users.sf.net>
 
        * docs/reference/gobject/tmpl/signals.sgml:
index 8a9a33c2f2bbd31d8e3b2a22160d1868fced4aba..3eaa7c68f2158e2f55d766584c350fd5f5228f61 100644 (file)
@@ -1143,7 +1143,7 @@ g_signal_lookup (const gchar *name,
     {
       /* give elaborate warnings */
       if (!g_type_name (itype))
-       g_warning (G_STRLOC ": unable to lookup signal \"%s\" for invalid type id `%lu'",
+       g_warning (G_STRLOC ": unable to lookup signal \"%s\" for invalid type id `%"G_GSIZE_FORMAT"'",
                   name, itype);
       else if (!G_TYPE_IS_INSTANTIATABLE (itype))
        g_warning (G_STRLOC ": unable to lookup signal \"%s\" for non instantiatable type `%s'",
@@ -1201,7 +1201,7 @@ g_signal_list_ids (GType  itype,
     {
       /* give elaborate warnings */
       if (!g_type_name (itype))
-       g_warning (G_STRLOC ": unable to list signals for invalid type id `%lu'",
+       g_warning (G_STRLOC ": unable to list signals for invalid type id `%"G_GSIZE_FORMAT"'",
                   itype);
       else if (!G_TYPE_IS_INSTANTIATABLE (itype) && !G_TYPE_IS_INTERFACE (itype))
        g_warning (G_STRLOC ": unable to list signals of non instantiatable type `%s'",