summaryrefslogtreecommitdiffstats
path: root/Python/gc_gil.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/gc_gil.c')
-rw-r--r--Python/gc_gil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/gc_gil.c b/Python/gc_gil.c
index 5f1365f..48646c7 100644
--- a/Python/gc_gil.c
+++ b/Python/gc_gil.c
@@ -11,7 +11,7 @@
void
_PyGC_ClearAllFreeLists(PyInterpreterState *interp)
{
- _PyObject_ClearFreeLists(&interp->freelist_state, 0);
+ _PyObject_ClearFreeLists(&interp->object_state.freelists, 0);
}
#endif