diff options
author | Lukasz Majewski <lukma@denx.de> | 2020-09-08 15:01:59 +0200 |
---|---|---|
committer | Lukasz Majewski <lukma@denx.de> | 2020-09-09 09:23:43 +0200 |
commit | c6a1a261c6a2b41c0a6248c1b09d9d6326610459 (patch) | |
tree | fe9aba839ac9a98c828a8d2fa239805cc04d8478 | |
parent | e74b61c09a2a2ab52153e731225ccba5078659b1 (diff) | |
download | glibc-c6a1a261c6a2b41c0a6248c1b09d9d6326610459.tar.gz glibc-c6a1a261c6a2b41c0a6248c1b09d9d6326610459.tar.xz glibc-c6a1a261c6a2b41c0a6248c1b09d9d6326610459.zip |
nptl: futex: Provide correct indentation for part of __futex_abstimed_wait_cancelable64
By mistake the if for calling __futex_abstimed_wait_cancellable32 was misaligned with the rest of the function body.
-rw-r--r-- | sysdeps/nptl/futex-internal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/nptl/futex-internal.c b/sysdeps/nptl/futex-internal.c index 5e52f17dee..adb3c20611 100644 --- a/sysdeps/nptl/futex-internal.c +++ b/sysdeps/nptl/futex-internal.c @@ -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) |