summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-12-01 18:56:28 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2014-12-01 18:56:28 +0200
commit133b11b566f06e24e4610cde6a9d2bba289ee673 (patch)
tree62bda47d1fe768f24879b9055596cd2b2943fa77 /Objects
parent56a6d855e2b93b0eb39a3b291ef43b2d03c5e986 (diff)
downloadcpython-git-133b11b566f06e24e4610cde6a9d2bba289ee673.tar.gz
Issue #22975: Close block at right place.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 3bf19328bc..70728f840c 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)