aboutsummaryrefslogtreecommitdiff
path: root/lib/floattixf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/floattixf.c')
-rw-r--r--lib/floattixf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/floattixf.c b/lib/floattixf.c
index d55029679..77d906049 100644
--- a/lib/floattixf.c
+++ b/lib/floattixf.c
@@ -78,7 +78,7 @@ __floattixf(ti_int a)
/* a is now rounded to LDBL_MANT_DIG bits */
}
long_double_bits fb;
- fb.u.high.low = ((su_int)s & 0x8000) | /* sign */
+ fb.u.high.s.low = ((su_int)s & 0x8000) | /* sign */
(e + 16383); /* exponent */
fb.u.low.all = (du_int)a; /* mantissa */
return fb.f;