mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Fix GCC warning in Python/hamt.c (GH-7618)
This commit is contained in:
parent
c4ef4896ea
commit
d8c3e820b4
1 changed files with 1 additions and 1 deletions
|
@ -2348,7 +2348,7 @@ _PyHamt_Without(PyHamtObject *o, PyObject *key)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
PyHamtNode *new_root;
|
PyHamtNode *new_root = NULL;
|
||||||
|
|
||||||
hamt_without_t res = hamt_node_without(
|
hamt_without_t res = hamt_node_without(
|
||||||
(PyHamtNode *)(o->h_root),
|
(PyHamtNode *)(o->h_root),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue