Skip to content

Commit e880b9c

Browse files
committed
Oh how I love having 50 different implementations of Py_DECREF
1 parent 8931a67 commit e880b9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Include/refcount.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ static inline void _Py_DECREF(PyThreadState *tstate, PyObject *op)
413413
}
414414
}
415415

416-
#define _Py_DECREF(op) _Py_DECREF(_PyObject_CAST(op))
416+
#define _Py_DECREF(tstate, op) _Py_DECREF(tstate, _PyObject_CAST(op))
417417

418418
#elif defined(Py_REF_DEBUG)
419419

0 commit comments

Comments
 (0)