summaryrefslogtreecommitdiff
path: root/nhrpd/reqid.c
diff options
context:
space:
mode:
Diffstat (limited to 'nhrpd/reqid.c')
-rw-r--r--nhrpd/reqid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nhrpd/reqid.c b/nhrpd/reqid.c
index e56bbe3bf7..738e935ec2 100644
--- a/nhrpd/reqid.c
+++ b/nhrpd/reqid.c
@@ -29,7 +29,7 @@ uint32_t nhrp_reqid_alloc(struct nhrp_reqid_pool *p, struct nhrp_reqid *r,
if (++p->next_request_id == 0)
p->next_request_id = 1;
r->cb = cb;
- hash_get(p->reqid_hash, r, hash_alloc_intern);
+ (void)hash_get(p->reqid_hash, r, hash_alloc_intern);
}
return r->request_id;
}