summaryrefslogtreecommitdiff
path: root/gmodule
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-11-28 18:34:16 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-11-28 18:34:16 +0000
commit0f1e8fb313e7b1539499ee430288644ab375980b (patch)
tree7e549ea183791a5f07f31f5557d3966cb5cdd158 /gmodule
parent09b118f462fabb228ba26a498001f7c4e72bdde8 (diff)
downloadglib-0f1e8fb313e7b1539499ee430288644ab375980b.tar.gz
Silence compiler warnings.
2005-11-28 Matthias Clasen <mclasen@redhat.com> * gmodule.c (parse_libtool_archive): Silence compiler warnings.
Diffstat (limited to 'gmodule')
-rw-r--r--gmodule/ChangeLog5
-rw-r--r--gmodule/gmodule.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/gmodule/ChangeLog b/gmodule/ChangeLog
index 15ae8208c..32b9571e4 100644
--- a/gmodule/ChangeLog
+++ b/gmodule/ChangeLog
@@ -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 ===
diff --git a/gmodule/gmodule.c b/gmodule/gmodule.c
index 1582c9621..fbf24cc86 100644
--- a/gmodule/gmodule.c
+++ b/gmodule/gmodule.c
@@ -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;