summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-02-10 17:00:27 (GMT)
committerGuido van Rossum <guido@python.org>1995-02-10 17:00:27 (GMT)
commit2497eada60349dc5f2eb8314f2128069374a35a2 (patch)
tree70e17e67e2c38b0ac9965a4ed3504e8ba87f8be6 /Objects
parent2165158ab32bf1808478cb0199df45d8be1ec2f4 (diff)
downloadcpython-2497eada60349dc5f2eb8314f2128069374a35a2.zip
cpython-2497eada60349dc5f2eb8314f2128069374a35a2.tar.gz
cpython-2497eada60349dc5f2eb8314f2128069374a35a2.tar.bz2
make size arg signed
Diffstat (limited to 'Objects')
-rw-r--r--Objects/object.c2
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);