summaryrefslogtreecommitdiffstats
path: root/Python/gc_gil.c
diff options
context:
space:
mode:
authorDonghee Na <donghee.na@python.org>2024-02-14 00:32:51 (GMT)
committerGitHub <noreply@github.com>2024-02-14 00:32:51 (GMT)
commitf15795c9a0f206b9abfb48007b267d12cd14f4a8 (patch)
tree1bd6b124e2ab983a921afb1c8ef02995ab39fb8b /Python/gc_gil.c
parent518af37eb569f52a3daf2cf9f4787deed10754ca (diff)
downloadcpython-f15795c9a0f206b9abfb48007b267d12cd14f4a8.zip
cpython-f15795c9a0f206b9abfb48007b267d12cd14f4a8.tar.gz
cpython-f15795c9a0f206b9abfb48007b267d12cd14f4a8.tar.bz2
gh-111968: Rename freelist related struct names to Eric's suggestion (gh-115329)
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