summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-10-27 21:37:48 +0000
committerGeorg Brandl <georg@python.org>2009-10-27 21:37:48 +0000
commit9137391d59abd43c87383994483e5bce80ad3226 (patch)
treeece87d981f68b92a6fd93548e4a8c81e035fb965
parentc00d4b437d544268b699fc57fe9e7c57ae89f1b3 (diff)
downloadcpython-git-9137391d59abd43c87383994483e5bce80ad3226.tar.gz
Only declare variable when it's used.
-rw-r--r--Modules/_localemodule.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c
index d90a49df96..fa6ab8fc6d 100644
--- a/Modules/_localemodule.c
+++ b/Modules/_localemodule.c
@@ -281,7 +281,9 @@ PyLocale_strxfrm(PyObject* self, PyObject* args)
wchar_t *s, *buf = NULL;
size_t n1, n2;
PyObject *result = NULL;
+#ifndef HAVE_USABLE_WCHAR_T
Py_ssize_t i;
+#endif
if (!PyArg_ParseTuple(args, "u#:strxfrm", &s0, &n0))
return NULL;