diff options
author | Guido van Rossum <guido@python.org> | 1995-02-10 17:00:27 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-02-10 17:00:27 (GMT) |
commit | 2497eada60349dc5f2eb8314f2128069374a35a2 (patch) | |
tree | 70e17e67e2c38b0ac9965a4ed3504e8ba87f8be6 /Objects/object.c | |
parent | 2165158ab32bf1808478cb0199df45d8be1ec2f4 (diff) | |
download | cpython-2497eada60349dc5f2eb8314f2128069374a35a2.zip cpython-2497eada60349dc5f2eb8314f2128069374a35a2.tar.gz cpython-2497eada60349dc5f2eb8314f2128069374a35a2.tar.bz2 |
make size arg signed
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c index 73353e4..d93d28b 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); |