Browse Source

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

pull/8141/head
Zackery Spytz 8 years ago
committed by INADA Naoki
parent
commit
d8c3e820b4
  1. 2
      Python/hamt.c

2
Python/hamt.c

@ -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…
Cancel
Save