Small style cleanup.

Change-Id: Ib45a4a2296232968296f9bd7cc3592ba46fd412d
This commit is contained in:
Elliott Hughes
2013-12-18 10:05:42 -08:00
parent 611b903ca7
commit 9e79af3b61
2 changed files with 2 additions and 2 deletions

View File

@@ -154,7 +154,7 @@ int __pthread_cond_timedwait_relative(pthread_cond_t* cond, pthread_mutex_t* mut
int status = __futex_wait_ex(&cond->value, COND_IS_SHARED(cond), old_value, reltime);
pthread_mutex_lock(mutex);
if (status == (-ETIMEDOUT)) {
if (status == -ETIMEDOUT) {
return ETIMEDOUT;
}
return 0;