diff options
author | Roland McGrath <roland@gnu.org> | 2002-11-01 04:12:25 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-11-01 04:12:25 +0000 |
commit | 2ac03c5daea3dea5fbe188dcf539905cc82ac325 (patch) | |
tree | 2b187cbd362ac78400f87ea7c624021236767f3a | |
parent | 846f07632c3e28a6614f123bbee3c11e7fdd0426 (diff) | |
download | glibc-2ac03c5daea3dea5fbe188dcf539905cc82ac325.zip glibc-2ac03c5daea3dea5fbe188dcf539905cc82ac325.tar.gz glibc-2ac03c5daea3dea5fbe188dcf539905cc82ac325.tar.bz2 |
2002-10-31 Roland McGrath <roland@redhat.com>
* sysdeps/i386/bits/byteswap.h [__GNUC__ < 2] (__bswap_32):
Renamed from __bswap_16 (typo fix). Reported by <dens@stl.sarov.ru>.
-rw-r--r-- | sysdeps/i386/bits/byteswap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/i386/bits/byteswap.h b/sysdeps/i386/bits/byteswap.h index 6812c61..980abc6 100644 --- a/sysdeps/i386/bits/byteswap.h +++ b/sysdeps/i386/bits/byteswap.h @@ -81,7 +81,7 @@ __v; })) # endif #else -# define __bswap_16(x) \ +# define __bswap_32(x) \ (__extension__ \ ({ register unsigned int __x = (x); __bswap_constant_32 (__x); })) #endif |