From: Serhiy Storchaka Date: Mon, 1 Dec 2014 16:56:28 +0000 (+0200) Subject: Issue #22975: Close block at right place. X-Git-Tag: v3.4.3rc1~281 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=133b11b566f06e24e4610cde6a9d2bba289ee673;p=thirdparty%2FPython%2Fcpython.git Issue #22975: Close block at right place. --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 3bf19328bc57..70728f840ca4 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)