Silence compiler warnings.
authorMatthias Clasen <mclasen@redhat.com>
Mon, 28 Nov 2005 18:34:16 +0000 (18:34 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 28 Nov 2005 18:34:16 +0000 (18:34 +0000)
2005-11-28  Matthias Clasen  <mclasen@redhat.com>

* gmodule.c (parse_libtool_archive): Silence
compiler warnings.

gmodule/ChangeLog
gmodule/gmodule.c

index 15ae820..32b9571 100644 (file)
@@ -1,3 +1,8 @@
+2005-11-28  Matthias Clasen  <mclasen@redhat.com>
+
+       * gmodule.c (parse_libtool_archive): Silence
+       compiler warnings.
+
 2005-11-17  Matthias Clasen  <mclasen@redhat.com>
 
        * === Released 2.9.0 ===
index 1582c96..fbf24cc 100644 (file)
@@ -201,9 +201,9 @@ g_module_supported (void)
 static gchar*
 parse_libtool_archive (const gchar* libtool_name)
 {
-  const gint TOKEN_DLNAME = G_TOKEN_LAST + 1;
-  const gint TOKEN_INSTALLED = G_TOKEN_LAST + 2;
-  const gint TOKEN_LIBDIR = G_TOKEN_LAST + 3;
+  const guint TOKEN_DLNAME = G_TOKEN_LAST + 1;
+  const guint TOKEN_INSTALLED = G_TOKEN_LAST + 2;
+  const guint TOKEN_LIBDIR = G_TOKEN_LAST + 3;
   gchar *lt_dlname = NULL;
   gboolean lt_installed = TRUE;
   gchar *lt_libdir = NULL;