diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-01 16:56:28 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-01 16:56:28 (GMT) |
commit | 133b11b566f06e24e4610cde6a9d2bba289ee673 (patch) | |
tree | 62bda47d1fe768f24879b9055596cd2b2943fa77 /Objects | |
parent | 56a6d855e2b93b0eb39a3b291ef43b2d03c5e986 (diff) | |
download | cpython-133b11b566f06e24e4610cde6a9d2bba289ee673.zip cpython-133b11b566f06e24e4610cde6a9d2bba289ee673.tar.gz cpython-133b11b566f06e24e4610cde6a9d2bba289ee673.tar.bz2 |
Issue #22975: Close block at right place.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 3bf1932..70728f8 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -9891,8 +9891,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) |