diff options
Diffstat (limited to 'src/pulsecore/hashmap.c')
| -rw-r--r-- | src/pulsecore/hashmap.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/hashmap.c b/src/pulsecore/hashmap.c index 3c6f41ec..57607b69 100644 --- a/src/pulsecore/hashmap.c +++ b/src/pulsecore/hashmap.c @@ -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))))  | 
