1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

silence mingw32 warning in i18n.c

* libguile/i18n.c (scm_make_locale): Silence a warning.
This commit is contained in:
Andy Wingo 2013-03-09 22:34:06 +01:00
parent 629987edfb
commit 14b59d6102

View file

@ -1,4 +1,4 @@
/* Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
/* Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
@ -685,6 +685,8 @@ SCM_DEFINE (scm_make_locale, "make-locale", 2, 1, 0,
}
}
/* silence gcc's unused variable warning */
(void) c_base_locale;
#endif
return locale;