summaryrefslogtreecommitdiffstats
path: root/Modules/_localemodule.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-06-13 07:50:45 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2008-06-13 07:50:45 (GMT)
commit59683e852906736276df6b8146064666098071b5 (patch)
tree693dacf60dae3bf6cb3bcbca5465b3f286e43b92 /Modules/_localemodule.c
parent1c95155bd153e4b9434a42ae434f6f6221c042a2 (diff)
downloadcpython-59683e852906736276df6b8146064666098071b5.zip
cpython-59683e852906736276df6b8146064666098071b5.tar.gz
cpython-59683e852906736276df6b8146064666098071b5.tar.bz2
Merged revisions 64226 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64226 | martin.v.loewis | 2008-06-13 09:47:47 +0200 (Fr, 13 Jun 2008) | 2 lines 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 50c72c9..37b7ec1 100644
--- a/Modules/_localemodule.c
+++ b/Modules/_localemodule.c
@@ -387,7 +387,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[] =