diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-03-19 22:07:43 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-03-19 22:07:43 -0400 |
commit | 97721a5508415a2f10eb068e022093811c9ff8be (patch) | |
tree | 88e9ce153895ad949576fa7ce1eeee4b02286479 /src/math/scalbnl.c | |
parent | fix exp asm (diff) | |
parent | code cleanup of named constants (diff) | |
download | grovel-97721a5508415a2f10eb068e022093811c9ff8be.tar.gz grovel-97721a5508415a2f10eb068e022093811c9ff8be.tar.xz |
Merge remote branch 'nsz/master'
Diffstat (limited to 'src/math/scalbnl.c')
-rw-r--r-- | src/math/scalbnl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/scalbnl.c b/src/math/scalbnl.c index a5d0adba..c605b8da 100644 --- a/src/math/scalbnl.c +++ b/src/math/scalbnl.c @@ -29,7 +29,7 @@ long double scalbnl(long double x, int n) return x * 0x1p-16382L; } } - scale.e = 1.0L; + scale.e = 1.0; scale.bits.exp = 0x3fff + n; return x * scale.e; } |