The rest of the changes by Trent Mick and Dale Nagata for warning-free

compilation on NT Alpha.  Mostly added casts etc.
This commit is contained in:
Guido van Rossum 2000-01-20 22:32:56 +00:00
parent e0a928dc1e
commit bffd683f73
15 changed files with 34 additions and 22 deletions

View file

@ -172,7 +172,7 @@ PyComplex_FromCComplex(cval)
return PyErr_NoMemory();
op->ob_type = &PyComplex_Type;
op->cval = cval;
_Py_NewReference(op);
_Py_NewReference((PyObject *)op);
return (PyObject *) op;
}