hashmap: use assert_se() to make clang happy
authorFrantisek Sumsal <frantisek@sumsal.cz>
Sat, 20 Aug 2022 19:57:18 +0000 (21:57 +0200)
committerFrantisek Sumsal <frantisek@sumsal.cz>
Sat, 20 Aug 2022 19:57:18 +0000 (21:57 +0200)
commit3b2b3d298541fbf20a05553cc3a1b1bf173ccf3f
treeb5968a98addbf9facb5ea6020777cebddc8bb7af
parent9abe4cfc39579037937c63602ce8fe4f51746d38
hashmap: use assert_se() to make clang happy

Otherwise it complains about a set but unused variable:

```
../src/basic/hashmap.c:1070:48: error: variable 'n_rehashed' set but not used [-Werror,-Wunused-but-set-variable]
        unsigned old_n_buckets, new_n_buckets, n_rehashed, new_n_entries;
                                                       ^
                                                       1 error generated.
```
src/basic/hashmap.c