From patchwork Sat Feb 15 09:32:50 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 38092 Received: (qmail 47950 invoked by alias); 15 Feb 2020 09:32:56 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 47938 invoked by uid 89); 15 Feb 2020 09:32:56 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-16.3 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.1 spammy=H*f:sk:87sgjc2, H*i:sk:87sgjc2 X-HELO: mail-out.m-online.net From: Andreas Schwab To: Adhemerval Zanella Cc: libc-alpha@sourceware.org Subject: [PATCH] arm: fix use of INTERNAL_SYSCALL_CALL References: <20200210192038.23588-1-adhemerval.zanella@linaro.org> <20200210192038.23588-15-adhemerval.zanella@linaro.org> <87sgjc2sqm.fsf@hase.home> X-Yow: I am a traffic light, and Alan Ginsberg kidnapped my laundry in 1927! Date: Sat, 15 Feb 2020 10:32:50 +0100 In-Reply-To: <87sgjc2sqm.fsf@hase.home> (Andreas Schwab's message of "Sat, 15 Feb 2020 08:51:29 +0100") Message-ID: <87o8u02o1p.fsf_-_@hase.home> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Remove extra argument from INTERNAL_SYSCALL_CALL macro call. Fixes commit bc2eb9321e ("linux: Remove INTERNAL_SYSCALL_DECL"). --- sysdeps/unix/sysv/linux/arm/tls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; })