summaryrefslogtreecommitdiffstats
path: root/Modules/_tracemalloc.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-03-24 21:34:34 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-03-24 21:34:34 (GMT)
commitd9a735234813fec6df7fe080f46e9cfd5a564c57 (patch)
tree57ed1a023b69e6698deb3f6392abaaa44f5a3fc6 /Modules/_tracemalloc.c
parentdf48b97855b378a13d852656d358ca92ecbe4aa3 (diff)
downloadcpython-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.c2
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)