style: use hash_xinsert

* gnulib: Update to get hash_xinsert.
Use it where appropriate.
This commit is contained in:
Akim Demaille
2020-05-17 12:00:02 +02:00
parent ac3b6c18a5
commit 4590071287
8 changed files with 22 additions and 34 deletions

View File

@@ -385,8 +385,7 @@ state_hash_free (void)
void
state_hash_insert (state *s)
{
if (!hash_insert (state_table, s))
xalloc_die ();
hash_xinsert (state_table, s);
}