summaryrefslogtreecommitdiff
path: root/libguile/i18n.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2013-03-09 22:34:06 +0100
committerAndy Wingo <wingo@pobox.com>2013-03-09 22:34:06 +0100
commit14b59d61028c94c8072f2f171fbc987102ad714d (patch)
tree9415eb04a3600ac0fe65b825a279b867ed3d3f8c /libguile/i18n.c
parent629987edfb1d03bcbdb6bf7f15d1ec0ff928e6f8 (diff)
downloadguile-14b59d61028c94c8072f2f171fbc987102ad714d.tar.gz
silence mingw32 warning in i18n.c
* libguile/i18n.c (scm_make_locale): Silence a warning.
Diffstat (limited to 'libguile/i18n.c')
-rw-r--r--libguile/i18n.c4
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;