From 9d109742c0803521cee7e92956e628b98906797d Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Thu, 15 Oct 2009 15:18:55 +0000 Subject: [PATCH] Fix missing semicolon --- Objects/bytearrayobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c index 0390c1d994..2262601b93 100644 --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -3120,7 +3120,7 @@ bytearray_reduce(PyByteArrayObject *self) latin1 = PyUnicode_DecodeLatin1(self->ob_bytes, Py_SIZE(self), NULL); #else - latin1 = PyString_FromStringAndSize(self->ob_bytes, Py_SIZE(self)) + latin1 = PyString_FromStringAndSize(self->ob_bytes, Py_SIZE(self)); #endif else #ifdef Py_USING_UNICODE -- 2.40.0