Fix GCC warning in Python/hamt.c (GH-7618)
This commit is contained in:
parent
c4ef4896ea
commit
d8c3e820b4
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue