0.9.15.40: reentrant STABLE-SORT and ADJUST-ARRAY
[sbcl.git] / src / runtime / linux-os.c
index b57b300..fbc888e 100644 (file)
@@ -88,13 +88,13 @@ futex_wait(int *lock_word, int oldval)
   again:
     t = sys_futex(lock_word,FUTEX_WAIT,oldval, 0);
 
-    /* Interrupted FUTEX_WAIT calls may return early. 
+    /* Interrupted FUTEX_WAIT calls may return early.
      *
      * If someone manages to wake the futex while we're spinning
      * around it, we will just return with -1 and errno EWOULDBLOCK,
      * because the value has changed, so that's ok. */
     if (t != 0 && errno == EINTR)
-       goto again;
+        goto again;
 
     return t;
 }