diff options
author | Andy Wingo <wingo@pobox.com> | 2013-03-09 22:34:06 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-03-09 22:34:06 +0100 |
commit | 14b59d61028c94c8072f2f171fbc987102ad714d (patch) | |
tree | 9415eb04a3600ac0fe65b825a279b867ed3d3f8c | |
parent | 629987edfb1d03bcbdb6bf7f15d1ec0ff928e6f8 (diff) | |
download | guile-14b59d61028c94c8072f2f171fbc987102ad714d.tar.gz |
silence mingw32 warning in i18n.c
* libguile/i18n.c (scm_make_locale): Silence a warning.
-rw-r--r-- | libguile/i18n.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libguile/i18n.c b/libguile/i18n.c index 817c66198..dc6d07d12 100644 --- a/libguile/i18n.c +++ b/libguile/i18n.c @@ -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; |