From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/10735 Path: news.gmane.org!.POSTED!not-for-mail From: Bobby Bingham Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH 1/2] s390x: fix typo s/ELG/ELF/ Date: Mon, 14 Nov 2016 21:37:41 -0600 Message-ID: <20161115033742.26538-2-koorogi@koorogi.info> References: <20161115033742.26538-1-koorogi@koorogi.info> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1479181114 6787 195.159.176.226 (15 Nov 2016 03:38:34 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Tue, 15 Nov 2016 03:38:34 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-10748-gllmg-musl=m.gmane.org@lists.openwall.com Tue Nov 15 04:38:31 2016 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.84_2) (envelope-from ) id 1c6UZd-0008Fw-V4 for gllmg-musl@m.gmane.org; Tue, 15 Nov 2016 04:38:18 +0100 Original-Received: (qmail 29987 invoked by uid 550); 15 Nov 2016 03:38:19 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 28508 invoked from network); 15 Nov 2016 03:38:09 -0000 X-Mailer: git-send-email 2.10.2 In-Reply-To: <20161115033742.26538-1-koorogi@koorogi.info> Xref: news.gmane.org gmane.linux.lib.musl.general:10735 Archived-At: --- arch/s390x/bits/user.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/s390x/bits/user.h b/arch/s390x/bits/user.h index d2065b5..428a397 100644 --- a/arch/s390x/bits/user.h +++ b/arch/s390x/bits/user.h @@ -12,7 +12,7 @@ typedef struct { } elf_fpregset_t; #define ELF_NGREG 27 -typedef unsigned long elf_greg_t, elf_gregset_t[ELG_NGREG]; +typedef unsigned long elf_greg_t, elf_gregset_t[ELF_NGREG]; struct _user_psw_struct { unsigned long mask, addr; -- 2.10.2