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;
diff --git a/libc/bionic/pthread_mutex.cpp b/libc/bionic/pthread_mutex.cpp
index 11a66ab..0d992b3 100644
--- a/libc/bionic/pthread_mutex.cpp
+++ b/libc/bionic/pthread_mutex.cpp
@@ -783,7 +783,7 @@
          * thread.
          */
         if (MUTEX_STATE_BITS_IS_LOCKED_CONTENDED(mvalue)) {
-            if (__futex_wait_ex(&mutex->value, shared, mvalue, &ts) == (-ETIMEDOUT)) {
+            if (__futex_wait_ex(&mutex->value, shared, mvalue, &ts) == -ETIMEDOUT) {
                 return EBUSY;
             }
             mvalue = mutex->value;