]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
nptl: futex: Provide correct indentation for part of __futex_abstimed_wait_cancelable64
authorLukasz Majewski <lukma@denx.de>
Tue, 8 Sep 2020 13:01:59 +0000 (15:01 +0200)
committerLukasz Majewski <lukma@denx.de>
Wed, 9 Sep 2020 07:23:43 +0000 (09:23 +0200)
By mistake the if for calling __futex_abstimed_wait_cancellable32 was
misaligned with the rest of the function body.

sysdeps/nptl/futex-internal.c

index 5e52f17deec07770e383033f8370923c2db32525..adb3c20611487473ef3ba0d87f3d5d75a588c886 100644 (file)
@@ -67,9 +67,9 @@ __futex_abstimed_wait_cancelable64 (unsigned int* futex_word,
                                  abstime, NULL /* Unused.  */,
                                  FUTEX_BITSET_MATCH_ANY);
 #ifndef __ASSUME_TIME64_SYSCALLS
-if (err == -ENOSYS)
-       err = __futex_abstimed_wait_cancellable32 (futex_word, expected,
-                                                  clockid, abstime, private);
+  if (err == -ENOSYS)
+    err = __futex_abstimed_wait_cancellable32 (futex_word, expected,
+                                               clockid, abstime, private);
 #endif
 
   switch (err)