Skip to content
Snippets Groups Projects
Commit 59ad6f51 authored by Raymond Toy's avatar Raymond Toy
Browse files

Initialize c to get rid of a compiler warning on Linux with gcc 4.4.1.

parent 4db363ec
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@ Q5 = -2.01099218183624371326e-07; /* BE8AFDB7 6E09C32D */
double x;
#endif
{
double y,hi,lo,c,t,e,hxs,hfx,r1;
double y,hi,lo,c = 0,t,e,hxs,hfx,r1;
int k,xsb;
unsigned hx;
union { int i[2]; double d; } ux;
......
......@@ -103,7 +103,7 @@ static double zero = 0.0;
double x;
#endif
{
double hfsq,f,c,s,z,R,u;
double hfsq,f,c = 0,s,z,R,u;
int k,hx,hu,ax;
union { int i[2]; double d; } ux;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment