Fix GCC warning in Python/hamt.c (GH-7618)

This commit is contained in:
Zackery Spytz 2018-07-06 02:50:38 -06:00 committed by INADA Naoki
parent c4ef4896ea
commit d8c3e820b4
1 changed files with 1 additions and 1 deletions

View File

@ -2348,7 +2348,7 @@ _PyHamt_Without(PyHamtObject *o, PyObject *key)
return NULL;
}
PyHamtNode *new_root;
PyHamtNode *new_root = NULL;
hamt_without_t res = hamt_node_without(
(PyHamtNode *)(o->h_root),