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 15ae8208c3cfc4ef9bac514c4543f6f19298d971..32b9571e4ebd53bce0c5e0518b66b3289c7991af 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 1582c9621190133a5068d2a869c6e1cbc7311d8f..fbf24cc8688cf8a9a1bac32cbf617342e22eb286 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;