Skip to content
Snippets Groups Projects
Commit 25a47a56 authored by Nick Zavaritsky's avatar Nick Zavaritsky
Browse files

Fix unused variable warning

parent 3dc06ff8
No related branches found
No related tags found
No related merge requests found
......@@ -491,6 +491,7 @@ ipc_cond_create(struct ipc_cond *c)
void
ipc_cond_destroy(struct ipc_cond *c)
{
(void)c;
assert(rlist_empty(&c->waiters));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment