diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-03-24 21:34:34 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-03-24 21:34:34 (GMT) |
commit | d9a735234813fec6df7fe080f46e9cfd5a564c57 (patch) | |
tree | 57ed1a023b69e6698deb3f6392abaaa44f5a3fc6 /Modules/_tracemalloc.c | |
parent | df48b97855b378a13d852656d358ca92ecbe4aa3 (diff) | |
download | cpython-d9a735234813fec6df7fe080f46e9cfd5a564c57.zip cpython-d9a735234813fec6df7fe080f46e9cfd5a564c57.tar.gz cpython-d9a735234813fec6df7fe080f46e9cfd5a564c57.tar.bz2 |
Issue #21036: Fix typo in macro name
_PY_HASHTABLE_ENTRY_DATA => _Py_HASHTABLE_ENTRY_DATA
Diffstat (limited to 'Modules/_tracemalloc.c')
-rw-r--r-- | Modules/_tracemalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index 42dbeae..780e8ed 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -1052,7 +1052,7 @@ tracemalloc_get_traces_fill(_Py_hashtable_entry_t *entry, void *user_data) PyObject *tracemalloc_obj; int res; - trace = (trace_t *)_PY_HASHTABLE_ENTRY_DATA(entry); + trace = (trace_t *)_Py_HASHTABLE_ENTRY_DATA(entry); tracemalloc_obj = trace_to_pyobject(trace, get_traces->tracebacks); if (tracemalloc_obj == NULL) |