Small style cleanup.

Change-Id: Ib45a4a2296232968296f9bd7cc3592ba46fd412d
diff --git a/libc/bionic/pthread_cond.cpp b/libc/bionic/pthread_cond.cpp
index 7c229b5..4583cef 100644
--- a/libc/bionic/pthread_cond.cpp
+++ b/libc/bionic/pthread_cond.cpp
@@ -154,7 +154,7 @@
   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;