diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-02 21:10:53 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-02 21:10:53 +0000 |
commit | 231e22facb565ccd2fd68cf7a9544eb6435c8b0d (patch) | |
tree | fe43566c86c2708b126b6ca5016bfcbbf44ca90e /Modules/_weakref.c | |
parent | b1cbc1e36b1b9010c25a0c4a2177f25abba1c6e6 (diff) | |
download | cpython-git-231e22facb565ccd2fd68cf7a9544eb6435c8b0d.tar.gz |
Repair legit compiler warning.
Diffstat (limited to 'Modules/_weakref.c')
-rw-r--r-- | Modules/_weakref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_weakref.c b/Modules/_weakref.c index dcbcb6b613..26750da581 100644 --- a/Modules/_weakref.c +++ b/Modules/_weakref.c @@ -34,7 +34,7 @@ new_weakref(void) result = free_list; free_list = result->wr_next; result->ob_type = &PyWeakReference_Type; - _Py_NewReference(result); + _Py_NewReference((PyObject *)result); } else { result = PyObject_NEW(PyWeakReference, &PyWeakReference_Type); |