diff --git a/Objects/object.c b/Objects/object.c index 73353e44691..d93d28b3e8d 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -88,7 +88,7 @@ newobject(tp) varobject * newvarobject(tp, size) typeobject *tp; - unsigned int size; + int size; { varobject *op = (varobject *) malloc(tp->tp_basicsize + size * tp->tp_itemsize);