commit | 5c767c2f876a0e9611489033b1be92c566273d6f | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Wed Jan 13 08:55:20 2010 +0000 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Wed Jan 13 08:55:20 2010 +0000 |
tree | 9b4abbdec9616095b098cb37d96ca245baf9755d | |
parent | 6467213bfd10dd45f0ae6fa607c8052a3bdaec23 [diff] [blame] |
Fix Windows build (re r77461)
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index b7874f1..e74165a 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c
@@ -5791,10 +5791,10 @@ goto nothing; if (str1->length == str2->length) { + Py_ssize_t i; /* same length */ if (str1->length == 0) goto nothing; - Py_ssize_t i; if (str1->length == 1) { /* replace characters */ Py_UNICODE u1, u2;