From 82ba14bc472e809d2090b97b6a3b9e6bd72760da Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 26 Jun 2002 09:10:52 +0000 Subject: Several cleanups/fixes from Marshall M. Midden --- libm/e_jn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libm/e_jn.c') 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; -- cgit v1.2.3