pulsecore: unused variable e in hashmap_put()

This commit is contained in:
Marc-André Lureau 2009-02-18 18:16:45 +02:00 committed by Lennart Poettering
parent 60d53c6523
commit 204083cb32

View file

@ -138,7 +138,7 @@ int pa_hashmap_put(pa_hashmap *h, const void *key, void *value) {
hash = h->hash_func(key) % NBUCKETS; hash = h->hash_func(key) % NBUCKETS;
if ((e = hash_scan(h, hash, key))) if (hash_scan(h, hash, key))
return -1; return -1;
if (!(e = pa_flist_pop(PA_STATIC_FLIST_GET(entries)))) if (!(e = pa_flist_pop(PA_STATIC_FLIST_GET(entries))))