diff options
author | David McCullough <davidm@snapgear.com> | 2002-08-09 13:03:00 +0000 |
---|---|---|
committer | David McCullough <davidm@snapgear.com> | 2002-08-09 13:03:00 +0000 |
commit | bea67a752df6f8e1dfce75592fb7c371e5c8a212 (patch) | |
tree | c9b547baafaae100ab2c34ef6930ba48a1a5a736 /libm/e_rem_pio2.c | |
parent | 54e4a312a7ac8609604d922950d29f618d1cb04c (diff) |
Fix a number of compile time warnings so that uClibc will build with -Werror using
a 3.0.4 version of the sh-linux-gcc compiler.
Diffstat (limited to 'libm/e_rem_pio2.c')
-rw-r--r-- | libm/e_rem_pio2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/e_rem_pio2.c b/libm/e_rem_pio2.c index 85dbaac6d..e98c699cd 100644 --- a/libm/e_rem_pio2.c +++ b/libm/e_rem_pio2.c @@ -90,7 +90,7 @@ pio2_3t = 8.47842766036889956997e-32; /* 0x397B839A, 0x252049C1 */ double x,y[]; #endif { - double z=0,w,t,r,fn; + double z=0.0,w,t,r,fn; double tx[3]; int32_t e0,i,j,nx,n,ix,hx; u_int32_t low; |