Fix missing semicolon
diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c
index 0390c1d..2262601 100644
--- a/Objects/bytearrayobject.c
+++ b/Objects/bytearrayobject.c
@@ -3120,7 +3120,7 @@
         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