From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/6941 Path: news.gmane.org!not-for-mail From: Felix Janda Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH] Fix typo in x86_64/x32 user_fpregs_struct Date: Sun, 1 Feb 2015 10:43:37 +0100 Message-ID: <20150201094337.GA4875@euler> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1422783912 5140 80.91.229.3 (1 Feb 2015 09:45:12 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 1 Feb 2015 09:45:12 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-6954-gllmg-musl=m.gmane.org@lists.openwall.com Sun Feb 01 10:45:12 2015 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1YHr5a-0004w6-PC for gllmg-musl@m.gmane.org; Sun, 01 Feb 2015 10:45:10 +0100 Original-Received: (qmail 32597 invoked by uid 550); 1 Feb 2015 09:45:08 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 32581 invoked from network); 1 Feb 2015 09:45:07 -0000 Mail-Followup-To: musl@lists.openwall.com Content-Disposition: inline User-Agent: Mutt/1.5.22 (2013-10-16) Xref: news.gmane.org gmane.linux.lib.musl.general:6941 Archived-At: mxcs_mask should be mxcr_mask --- arch/x32/bits/user.h | 2 +- arch/x86_64/bits/user.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x32/bits/user.h b/arch/x32/bits/user.h index 8b42632..1bd2d70 100644 --- a/arch/x32/bits/user.h +++ b/arch/x32/bits/user.h @@ -5,7 +5,7 @@ typedef struct user_fpregs_struct { uint16_t cwd, swd, ftw, fop; uint64_t rip, rdp; - uint32_t mxcsr, mxcs_mask; + uint32_t mxcsr, mxcr_mask; uint32_t st_space[32], xmm_space[64], padding[24]; } elf_fpregset_t; diff --git a/arch/x86_64/bits/user.h b/arch/x86_64/bits/user.h index 8b42632..1bd2d70 100644 --- a/arch/x86_64/bits/user.h +++ b/arch/x86_64/bits/user.h @@ -5,7 +5,7 @@ typedef struct user_fpregs_struct { uint16_t cwd, swd, ftw, fop; uint64_t rip, rdp; - uint32_t mxcsr, mxcs_mask; + uint32_t mxcsr, mxcr_mask; uint32_t st_space[32], xmm_space[64], padding[24]; } elf_fpregset_t; -- 2.0.5