mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
arm: fix use of INTERNAL_SYSCALL_CALL
Remove extra argument from INTERNAL_SYSCALL_CALL macro call. Fixes
commit bc2eb9321e
("linux: Remove INTERNAL_SYSCALL_DECL").
This commit is contained in:
parent
bc2eb9321e
commit
9c7a58347b
@ -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; })
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user