summaryrefslogtreecommitdiff
path: root/libm/e_exp.c
diff options
context:
space:
mode:
authorDavid McCullough <davidm@snapgear.com>2002-08-09 13:03:00 +0000
committerDavid McCullough <davidm@snapgear.com>2002-08-09 13:03:00 +0000
commitbea67a752df6f8e1dfce75592fb7c371e5c8a212 (patch)
treec9b547baafaae100ab2c34ef6930ba48a1a5a736 /libm/e_exp.c
parent54e4a312a7ac8609604d922950d29f618d1cb04c (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_exp.c')
-rw-r--r--libm/e_exp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/e_exp.c b/libm/e_exp.c
index 734166733..f92910e85 100644
--- a/libm/e_exp.c
+++ b/libm/e_exp.c
@@ -111,8 +111,8 @@ P5 = 4.13813679705723846039e-08; /* 0x3E663769, 0x72BEA4D0 */
#endif
{
double y;
- double hi = 0;
- double lo = 0;
+ double hi = 0.0;
+ double lo = 0.0;
double c;
double t;
int32_t k=0;