summaryrefslogtreecommitdiff
path: root/libm/e_jn.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-06-26 09:10:52 +0000
committerEric Andersen <andersen@codepoet.org>2002-06-26 09:10:52 +0000
commit82ba14bc472e809d2090b97b6a3b9e6bd72760da (patch)
treec1628065029235e1f701c0e8bef2a7239db85227 /libm/e_jn.c
parent6cb1c53fa0059ba6200e1e5ab0bc9a97cb25171e (diff)
Several cleanups/fixes from Marshall M. Midden <m4@brecis.com>
Diffstat (limited to 'libm/e_jn.c')
-rw-r--r--libm/e_jn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/e_jn.c b/libm/e_jn.c
index 27a8a1969..870824cf8 100644
--- a/libm/e_jn.c
+++ b/libm/e_jn.c
@@ -66,7 +66,7 @@ static double zero = 0.00000000000000000000e+00;
#endif
{
int32_t i,hx,ix,lx, sgn;
- double a, b, temp, di;
+ double a, b, temp=0, di;
double z, w;
/* J(-n,x) = (-1)^n * J(n, x), J(n, -x) = (-1)^n * J(n, x)
@@ -227,7 +227,7 @@ static double zero = 0.00000000000000000000e+00;
{
int32_t i,hx,ix,lx;
int32_t sign;
- double a, b, temp;
+ double a, b, temp=0;
EXTRACT_WORDS(hx,lx,x);
ix = 0x7fffffff&hx;