From patchwork Thu Jul 13 00:06:16 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John David Anglin X-Patchwork-Id: 787455 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org 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 ozlabs.org (Postfix) with ESMTPS id 3x7GM83PdWz9s03 for ; Thu, 13 Jul 2017 10:06:28 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="oWzU5I9Q"; dkim-atps=neutral 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:content-type:date:subject:to:message-id :mime-version; q=dns; s=default; b=oXM4oXCrcDN+FVh6jt22YUeWW9TF5 IuLlQvTRCwGWXpav3e8lRNnwcDKwPTkHIr6XCFZKvrZi8Fus/WtLYEgu5/UzP36V MP8j6dN+rFP31iRs1Af/v/ZiiLWb8Dcda6rbxanpYi/ZwTWFpjaz0CJ2c85vBdW8 yEv9tImh57RipI= 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:content-type:date:subject:to:message-id :mime-version; s=default; bh=rQfoodS4NLEWYYGURbdfpiL2PGo=; b=oWz U5I9QYrytHl4M1zDZxJH8GzoLrTNfdwFUdJwhyfpJkjtAwqIDtoP9FEmOf1Rh7uD sKo+1sQkOP8cotcG3IwDXUwQ5lhwnY5rA/Cf6rWE6PTo0lv6raBUuGWcSmp3x8JA U/fRj+fjaHY4p0OLHtn9Q4HVGWG1sJW/4l9ykDpU= Received: (qmail 54376 invoked by alias); 13 Jul 2017 00:06:20 -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 54365 invoked by uid 89); 13 Jul 2017 00:06:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.4 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_LOW, RP_MATCHES_RCVD, SPF_PASS, UNPARSEABLE_RELAY autolearn=ham version=3.3.2 spammy=U*danglin, danglingccgnuorg, danglin@gcc.gnu.org, sk:danglin X-HELO: mtlfep02.bell.net From: John David Anglin Date: Wed, 12 Jul 2017 20:06:16 -0400 Subject: [committed] Fix typo in sysdeps/hppa/dl-machine.h To: GNU C Library Message-Id: <7D382067-D3DE-4B0A-8213-6B633CC2D706@bell.net> Mime-Version: 1.0 (Apple Message framework v1085) Patch adds missing comma. Dave --- John David Anglin dave.anglin@bell.net 2017-07-12 John David Anglin * sysdeps/hppa/dl-machine.h (elf_machine_rela): Fix typo. diff --git a/sysdeps/hppa/dl-machine.h b/sysdeps/hppa/dl-machine.h index b7bdf871f1..e24bd25c63 100644 --- a/sysdeps/hppa/dl-machine.h +++ b/sysdeps/hppa/dl-machine.h @@ -653,7 +653,7 @@ elf_machine_rela (struct link_map *map, case R_PARISC_IPLT: if (__builtin_expect (sym_map != NULL, 1)) { - elf_machine_fixup_plt (NULL, sym_map, NULL, NULL reloc, reloc_addr, + elf_machine_fixup_plt (NULL, sym_map, NULL, NULL, reloc, reloc_addr, DL_FIXUP_MAKE_VALUE(sym_map, value)); } else