Skip to content

Commit 256eb57

Browse files
committed
fix compilation
1 parent 951f70c commit 256eb57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/legacy_tracing.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ sys_profile_unwind(
102102

103103
static PyObject *
104104
sys_profile_call_or_return(
105-
PyObject *callable, PyObject *const *args,
105+
PyObject *op, PyObject *const *args,
106106
size_t nargsf, PyObject *kwnames
107107
) {
108-
_PyLegacyEventHandler *self = _PyLegacyEventHandler_CAST(callable);
108+
_PyLegacyEventHandler *self = _PyLegacyEventHandler_CAST(op);
109109
assert(kwnames == NULL);
110110
assert(PyVectorcall_NARGS(nargsf) == 4);
111111
PyObject *callable = args[2];

0 commit comments

Comments
 (0)