diff options
author | Donghee Na <donghee.na@python.org> | 2024-01-10 23:51:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 23:51:51 (GMT) |
commit | c65ae26f2b46ca616a7ca000bbfcdf63b9bdd779 (patch) | |
tree | 606242e1226d8b0f2b1f3d3855f40dbaa9c5fbc2 /Include | |
parent | 9d33c23857cfd952bf3e1e7f34c77b7c9a5accc3 (diff) | |
download | cpython-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.h | 2 |
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 |