summaryrefslogtreecommitdiffstats
path: root/Objects/abstract.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/abstract.c')
-rw-r--r--Objects/abstract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index db9f926..c41fe11 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -2365,7 +2365,7 @@ _PyObject_FastCallKeywords(PyObject *func, PyObject **stack, Py_ssize_t nargs,
}
if (PyCFunction_Check(func) && nkwargs == 0) {
- return _PyCFunction_FastCallDict(func, args, nargs, NULL);
+ return _PyCFunction_FastCallDict(func, stack, nargs, NULL);
}
/* Slow-path: build temporary tuple and/or dict */