(cleanup): Avoid warning.

This commit is contained in:
Ulrich Drepper 2007-01-18 22:19:38 +00:00
parent cd8127cc70
commit 4f7c7e831b
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ cleanup (void *arg)
/* If we already changed the waiter ID, reset it. The call cannot
fail for any reason but the thread not having done that yet so
there is no reason for a loop. */
atomic_compare_and_exchange_bool_acq ((struct pthread **) arg, NULL,
THREAD_SELF);
(void) atomic_compare_and_exchange_bool_acq ((struct pthread **) arg, NULL,
THREAD_SELF);
}