Issue #22975: Close block at right place.

This commit is contained in:
Serhiy Storchaka 2014-12-01 18:56:54 +02:00
commit 407249c62b
1 changed files with 1 additions and 1 deletions

View File

@ -9880,8 +9880,8 @@ PyUnicode_Join(PyObject *separator, PyObject *seq)
Py_UCS4 * to_ = (Py_UCS4 *)((data)) + (start); \
for (; i_ < (length); ++i_, ++to_) *to_ = (value); \
break; \
default: assert(0); \
} \
default: assert(0); \
} \
} while (0)