Only declare variable when it's used.

This commit is contained in:
Georg Brandl 2009-10-27 21:37:48 +00:00
parent c00d4b437d
commit 9137391d59
1 changed files with 2 additions and 0 deletions

View File

@ -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;