summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorDonghee Na <donghee.na@python.org>2024-01-10 23:51:51 (GMT)
committerGitHub <noreply@github.com>2024-01-10 23:51:51 (GMT)
commitc65ae26f2b46ca616a7ca000bbfcdf63b9bdd779 (patch)
tree606242e1226d8b0f2b1f3d3855f40dbaa9c5fbc2 /Include
parent9d33c23857cfd952bf3e1e7f34c77b7c9a5accc3 (diff)
downloadcpython-c65ae26f2b46ca616a7ca000bbfcdf63b9bdd779.zip
cpython-c65ae26f2b46ca616a7ca000bbfcdf63b9bdd779.tar.gz
cpython-c65ae26f2b46ca616a7ca000bbfcdf63b9bdd779.tar.bz2
gh-111968: Unify naming scheme for freelist (gh-113919)
Diffstat (limited to 'Include')
-rw-r--r--Include/internal/pycore_freelist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_freelist.h b/Include/internal/pycore_freelist.h
index d961921..d41153d 100644
--- a/Include/internal/pycore_freelist.h
+++ b/Include/internal/pycore_freelist.h
@@ -36,7 +36,7 @@ struct _Py_float_state {
typedef struct _Py_freelist_state {
struct _Py_float_state float_state;
- struct _Py_list_state list;
+ struct _Py_list_state list_state;
} _PyFreeListState;
#ifdef __cplusplus