From 0f1e8fb313e7b1539499ee430288644ab375980b Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 28 Nov 2005 18:34:16 +0000 Subject: [PATCH] Silence compiler warnings. 2005-11-28 Matthias Clasen * gmodule.c (parse_libtool_archive): Silence compiler warnings. --- gmodule/ChangeLog | 5 +++++ gmodule/gmodule.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/gmodule/ChangeLog b/gmodule/ChangeLog index 15ae8208..32b9571e 100644 --- a/gmodule/ChangeLog +++ b/gmodule/ChangeLog @@ -1,3 +1,8 @@ +2005-11-28 Matthias Clasen + + * gmodule.c (parse_libtool_archive): Silence + compiler warnings. + 2005-11-17 Matthias Clasen * === Released 2.9.0 === diff --git a/gmodule/gmodule.c b/gmodule/gmodule.c index 1582c962..fbf24cc8 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; -- 2.34.1