]> granicus.if.org Git - python/commitdiff
Fix missing semicolon
authorMark Dickinson <dickinsm@gmail.com>
Thu, 15 Oct 2009 15:18:55 +0000 (15:18 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Thu, 15 Oct 2009 15:18:55 +0000 (15:18 +0000)
Objects/bytearrayobject.c

index 0390c1d994c3243a8c48cd27563deadd025f08f1..2262601b9355c8fe236be4e0b289b9120025d825 100644 (file)
@@ -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