diff options
| author | Guido van Rossum <guido@python.org> | 2000-01-20 22:32:56 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2000-01-20 22:32:56 +0000 |
| commit | bffd683f7356d92d4504b2bcaa7221fab3f52f4e (patch) | |
| tree | fb68ae112139013c715e82c4b03678feab52ab21 /Objects/listobject.c | |
| parent | e0a928dc1ec74f487471d102ae6efacc92055aa6 (diff) | |
| download | cpython-git-bffd683f7356d92d4504b2bcaa7221fab3f52f4e.tar.gz | |
The rest of the changes by Trent Mick and Dale Nagata for warning-free
compilation on NT Alpha. Mostly added casts etc.
Diffstat (limited to 'Objects/listobject.c')
| -rw-r--r-- | Objects/listobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c index 0342cdcb38..4caa6df969 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -88,7 +88,7 @@ PyList_New(size) op->ob_size = size; for (i = 0; i < size; i++) op->ob_item[i] = NULL; - _Py_NewReference(op); + _Py_NewReference((PyObject *)op); return (PyObject *) op; } |
