lib/compartment_helpers: ignore futex_timed_wait result
diff --git a/sdk/lib/compartment_helpers/claim_fast.cc b/sdk/lib/compartment_helpers/claim_fast.cc
index bf87ae4..a509c1f 100644
--- a/sdk/lib/compartment_helpers/claim_fast.cc
+++ b/sdk/lib/compartment_helpers/claim_fast.cc
@@ -43,10 +43,11 @@
if (timeout->may_block())
{
Timeout t{1};
- futex_timed_wait(&t,
- reinterpret_cast<uint32_t *>(epochCounter),
- epoch,
- FutexPriorityInheritance);
+ (void)futex_timed_wait(
+ &t,
+ reinterpret_cast<uint32_t *>(epochCounter),
+ epoch,
+ FutexPriorityInheritance);
timeout->elapse(t.elapsed);
}
else