summaryrefslogtreecommitdiffstats
path: root/Modules/_localemodule.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-06-13 07:47:47 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2008-06-13 07:47:47 (GMT)
commit111c180674379950f65113db8076919b2353f5ab (patch)
tree3dd5a9985792d7c0f8e7fdc5f1b3df552d3d33fd /Modules/_localemodule.c
parente1f6646d6899a7dffe269e829b72c1b171eb7075 (diff)
downloadcpython-111c180674379950f65113db8076919b2353f5ab.zip
cpython-111c180674379950f65113db8076919b2353f5ab.tar.gz
cpython-111c180674379950f65113db8076919b2353f5ab.tar.bz2
Make more symbols static.
Diffstat (limited to 'Modules/_localemodule.c')
-rw-r--r--Modules/_localemodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c
index 02e9e53..09e04ef 100644
--- a/Modules/_localemodule.c
+++ b/Modules/_localemodule.c
@@ -444,7 +444,7 @@ PyLocale_getdefaultlocale(PyObject* self)
#ifdef HAVE_LANGINFO_H
#define LANGINFO(X) {#X, X}
-struct langinfo_constant{
+static struct langinfo_constant{
char* name;
int value;
} langinfo_constants[] =