Silence compiler warnings.

2005-11-28  Matthias Clasen  <mclasen@redhat.com>

	* gmodule.c (parse_libtool_archive): Silence
	compiler warnings.
This commit is contained in:
Matthias Clasen 2005-11-28 18:34:16 +00:00 committed by Matthias Clasen
parent 09b118f462
commit 0f1e8fb313
2 changed files with 8 additions and 3 deletions

View 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 ===

View 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;