From 133b11b566f06e24e4610cde6a9d2bba289ee673 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Mon, 1 Dec 2014 18:56:28 +0200 Subject: [PATCH] Issue #22975: Close block at right place. --- Objects/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 3bf19328bc5..70728f840ca 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)