Issue #21036: Fix typo in macro name

_PY_HASHTABLE_ENTRY_DATA => _Py_HASHTABLE_ENTRY_DATA
This commit is contained in:
Victor Stinner 2014-03-24 22:34:34 +01:00
parent df48b97855
commit d9a7352348
3 changed files with 6 additions and 6 deletions

View file

@ -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)