about summary refs log tree commit diff
path: root/wctype/wctype_l.c
diff options
context:
space:
mode:
Diffstat (limited to 'wctype/wctype_l.c')
-rw-r--r--wctype/wctype_l.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/wctype/wctype_l.c b/wctype/wctype_l.c
index 6a8d469fa8..0a19504503 100644
--- a/wctype/wctype_l.c
+++ b/wctype/wctype_l.c
@@ -45,9 +45,9 @@ __wctype_l (const char *property, __locale_t locale)
 #if __BYTE_ORDER == __BIG_ENDIAN
   return result;
 #else
-#define XSWAPU32(w) \
-  ((((w) & 0xff00ff00) >> 8) | (((w) & 0xff00ff) << 8))
+# define SWAPU32(w) \
+  (((w) << 24) | (((w) & 0xff00) << 8) | (((w) >> 8) & 0xff00) | ((w) >> 24))
 
-  return XSWAPU32 (result);
+  return SWAPU32 (result);
 #endif
 }