Skip to content

Commit 080a0c8

Browse files
fix compilation
1 parent ed666f9 commit 080a0c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_asynciomodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3000,7 +3000,7 @@ task_call_step_soon(asyncio_state *state, TaskObj *task, PyObject *arg)
30003000
return -1;
30013001
}
30023002

3003-
int ret = call_soon(state, task->task_loop, cb, NULL, task_context);
3003+
int ret = call_soon(state, task->task_loop, cb, NULL, task->task_context);
30043004
Py_DECREF(cb);
30053005
return ret;
30063006
}

0 commit comments

Comments
 (0)