Fix typo that broke recursive mutexes implementation.

Change-Id: I832901604b487c6a50304c311b5ba135e153530d
diff --git a/libc/bionic/pthread.c b/libc/bionic/pthread.c
index f93a241..ae44b06 100644
--- a/libc/bionic/pthread.c
+++ b/libc/bionic/pthread.c
@@ -1124,7 +1124,7 @@
 
     /* Wake one waiting thread, if any */
     if ((oldv & 3) == 2) {
-        int wake_op = shared ? FUTEX_WAIT_PRIVATE : FUTEX_WAIT;
+        int wake_op = shared ? FUTEX_WAKE : FUTEX_WAKE_PRIVATE;
         __futex_syscall3(&mutex->value, wake_op, 1);
     }
     return 0;