From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.9 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_EF,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 345D91F45E for ; Sat, 15 Feb 2020 09:33:08 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:references:date:in-reply-to :message-id:mime-version:content-type; q=dns; s=default; b=mlC1e rK0A3BBPSwK2kZjAGu/HHNtDeXA9MzrZWjfZwyNBCoVlAYHPkhDDe96a3/v8X10+ Y2ZIeczNrLc50z4n5HHIvj3pmE/qVcEf0WC3ghsNhkmR47/FqgYbBqYRW9NQ2AFw wQvy3eF6Ik/CRUudfYWXi0AJuOO1F1DSn8Wwf4= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:references:date:in-reply-to :message-id:mime-version:content-type; s=default; bh=Sgmq9kNJdbe Tqbj2p87Tptg+bsM=; b=dz3FDuHQAiDrLgG1RtFbdcPkw0v5KmbpQRLZV+Id2zL xM0wYAFC4hqpvHZdsw0Amq7Qs5EyiqLXxF4pEKHbOqlMELuXrg9D7xPfcSsrlq87 ImHTZxLXH6jwxyfpyi2hMs+XS1kgFg0/GIcKUfoO4HGFx0JQv6RnfIQo0hXlZ8Ok = 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 Received: (qmail 47938 invoked by uid 89); 15 Feb 2020 09:32:56 -0000 Authentication-Results: sourceware.org; auth=none 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 Content-Type: text/plain 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; }) -- 2.25.0 -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1 "And now for something completely different."