summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-06-30 16:37:51 -0400
committerRich Felker <dalias@aerifal.cx>2011-06-30 16:37:51 -0400
commitdaaef3552d9f1fa9b6dc839b66637df3672b0541 (patch)
tree1a1a874b1baed998241bba53ce8e95e16cb748f2 /src
parentf6fd351c703a2843959b3be83078d9dce33f30f3 (diff)
downloadmusl-daaef3552d9f1fa9b6dc839b66637df3672b0541.tar.gz
fix error in previous ld80 fpclassify commit
Diffstat (limited to 'src')
-rw-r--r--src/math/__fpclassifyl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/__fpclassifyl.c b/src/math/__fpclassifyl.c
index 4f4f37a7..a4e354ce 100644
--- a/src/math/__fpclassifyl.c
+++ b/src/math/__fpclassifyl.c
@@ -7,7 +7,7 @@ int __fpclassifyl(long double __x)
union {
long double __ld;
__uint16_t __hw[5];
- __int64_t __m;
+ int64_t __m;
} __y = { __x };
int __ee = __y.__hw[4]&0x7fff;
if (!__ee) return __y.__m ? FP_SUBNORMAL : FP_ZERO;