aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2020-02-15 10:21:20 +0100
committerAndreas Schwab <schwab@suse.de>2020-02-15 10:30:44 +0100
commit9c7a58347b37065698106561f5c50010591f5194 (patch)
tree020bea359695e2eae9b5e1db7191b232001c2e66
parentbc2eb9321ec0d17d41596933617b2522c9aa5e0b (diff)
downloadglibc-9c7a58347b37065698106561f5c50010591f5194.tar
glibc-9c7a58347b37065698106561f5c50010591f5194.tar.gz
glibc-9c7a58347b37065698106561f5c50010591f5194.tar.bz2
glibc-9c7a58347b37065698106561f5c50010591f5194.zip
arm: fix use of INTERNAL_SYSCALL_CALL
Remove extra argument from INTERNAL_SYSCALL_CALL macro call. Fixes commit bc2eb9321e ("linux: Remove INTERNAL_SYSCALL_DECL").
-rw-r--r--sysdeps/unix/sysv/linux/arm/tls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/arm/tls.h b/sysdeps/unix/sysv/linux/arm/tls.h
index 1b520c6802..57b583dbd8 100644
--- a/sysdeps/unix/sysv/linux/arm/tls.h
+++ b/sysdeps/unix/sysv/linux/arm/tls.h
@@ -32,7 +32,7 @@
operation can cause a failure 'errno' must not be touched. */
# define TLS_INIT_TP(tcbp) \
({ long int result_var; \
- result_var = INTERNAL_SYSCALL_CALL (set_tls, 1, (tcbp)); \
+ result_var = INTERNAL_SYSCALL_CALL (set_tls, (tcbp)); \
INTERNAL_SYSCALL_ERROR_P (result_var) \
? "unknown error" : NULL; })