mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
pulsecore: unused variable e in hashmap_put()
This commit is contained in:
parent
60d53c6523
commit
204083cb32
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ int pa_hashmap_put(pa_hashmap *h, const void *key, void *value) {
|
|||
|
||||
hash = h->hash_func(key) % NBUCKETS;
|
||||
|
||||
if ((e = hash_scan(h, hash, key)))
|
||||
if (hash_scan(h, hash, key))
|
||||
return -1;
|
||||
|
||||
if (!(e = pa_flist_pop(PA_STATIC_FLIST_GET(entries))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue