arm: fix use of INTERNAL_SYSCALL_CALL
authorAndreas Schwab <schwab@suse.de>
Sat, 15 Feb 2020 09:21:20 +0000 (10:21 +0100)
committerAndreas Schwab <schwab@suse.de>
Sat, 15 Feb 2020 09:30:44 +0000 (10:30 +0100)
Remove extra argument from INTERNAL_SYSCALL_CALL macro call.  Fixes
commit bc2eb9321e ("linux: Remove INTERNAL_SYSCALL_DECL").

sysdeps/unix/sysv/linux/arm/tls.h

index 1b520c6..57b583d 100644 (file)
@@ -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; })