From: Matthias Clasen Date: Mon, 28 Nov 2005 18:34:16 +0000 (+0000) Subject: Silence compiler warnings. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=0f1e8fb313e7b1539499ee430288644ab375980b;p=dana%2Fcg-glib.git Silence compiler warnings. 2005-11-28 Matthias Clasen * gmodule.c (parse_libtool_archive): Silence compiler warnings. --- 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;