From 227c4858bc336de1ff59a984f322da3100fb9992 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 27 Oct 2009 21:39:08 +0000 Subject: Merged revisions 75877 via svnmerge from svn+ssh://svn.python.org/python/branches/py3k ........ r75877 | georg.brandl | 2009-10-27 22:37:48 +0100 (Di, 27 Okt 2009) | 1 line Only declare variable when it's used. ........ --- Modules/_localemodule.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c index d90a49d..fa6ab8f 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; -- cgit v0.12