make size arg signed

This commit is contained in:
Guido van Rossum 1995-02-10 17:00:27 +00:00
parent 2165158ab3
commit 2497eada60
1 changed files with 1 additions and 1 deletions

View File

@ -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);