aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-12-21 23:30:28 +0000
committerUlrich Drepper <drepper@redhat.com>2000-12-21 23:30:28 +0000
commit4260c4120a20755359c25125c2bb3d9cf759ea92 (patch)
tree1a6dd1e6a9e91529f50334ff7259c3e555d6f9ee /sysdeps
parentcc657ce5831efdfc208a1842c7e61c3685a256d0 (diff)
downloadglibc-4260c4120a20755359c25125c2bb3d9cf759ea92.tar
glibc-4260c4120a20755359c25125c2bb3d9cf759ea92.tar.gz
glibc-4260c4120a20755359c25125c2bb3d9cf759ea92.tar.bz2
glibc-4260c4120a20755359c25125c2bb3d9cf759ea92.zip
Fix a typo.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/ieee754/ldbl-96/math_ldbl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ieee754/ldbl-96/math_ldbl.h b/sysdeps/ieee754/ldbl-96/math_ldbl.h
index 1a9b027035..cca30657ce 100644
--- a/sysdeps/ieee754/ldbl-96/math_ldbl.h
+++ b/sysdeps/ieee754/ldbl-96/math_ldbl.h
@@ -12,8 +12,8 @@ typedef union
long double value;
struct
{
- unsigned int sign_exponent:16;
- int empty:16;
+ int sign_exponent:16;
+ unsigned int empty:16;
u_int32_t msw;
u_int32_t lsw;
} parts;