Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date: Sun, 1 Feb 2015 10:43:37 +0100
From: Felix Janda <felix.janda@...teo.de>
To: musl@...ts.openwall.com
Subject: [PATCH] Fix typo in x86_64/x32 user_fpregs_struct

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

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.