From da30785e9878a4bb3bc7899143a58b33f22895dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Sat, 23 Jul 2011 20:43:14 +0000 Subject: [PATCH] [CRT] - fix stupid gcc warnings patch by Igor Paliychuk svn path=/trunk/; revision=52823 --- reactos/lib/sdk/crt/math/ieee754/j0_y0.c | 8 ++++---- reactos/lib/sdk/crt/math/ieee754/j1_y1.c | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/reactos/lib/sdk/crt/math/ieee754/j0_y0.c b/reactos/lib/sdk/crt/math/ieee754/j0_y0.c index 43f68a5bb86..e24f85637a7 100644 --- a/reactos/lib/sdk/crt/math/ieee754/j0_y0.c +++ b/reactos/lib/sdk/crt/math/ieee754/j0_y0.c @@ -352,9 +352,9 @@ static double pS2[5] = { #endif { #ifdef __STDC__ - const double *p,*q; + const double *p = 0,*q = 0; #else - double *p,*q; + double *p = 0,*q = 0; #endif double z,r,s,z2,z4,r1,r2,r3,s1,s2,s3; int32_t ix; @@ -499,9 +499,9 @@ static double qS2[6] = { #endif { #ifdef __STDC__ - const double *p,*q; + const double *p = 0,*q = 0; #else - double *p,*q; + double *p = 0,*q = 0; #endif double s,r,z,z2,z4,z6,r1,r2,r3,s1,s2,s3; int32_t ix; diff --git a/reactos/lib/sdk/crt/math/ieee754/j1_y1.c b/reactos/lib/sdk/crt/math/ieee754/j1_y1.c index 603eac28d8b..18c7e6df9b9 100644 --- a/reactos/lib/sdk/crt/math/ieee754/j1_y1.c +++ b/reactos/lib/sdk/crt/math/ieee754/j1_y1.c @@ -352,9 +352,9 @@ static double ps2[5] = { #endif { #ifdef __STDC__ - const double *p,*q; + const double *p = 0,*q = 0; #else - double *p,*q; + double *p = 0,*q = 0; #endif double z,r,s,r1,r2,r3,s1,s2,s3,z2,z4; int32_t ix; @@ -500,9 +500,9 @@ static double qs2[6] = { #endif { #ifdef __STDC__ - const double *p,*q; + const double *p = 0,*q = 0; #else - double *p,*q; + double *p = 0,*q = 0; #endif double s,r,z,r1,r2,r3,s1,s2,s3,z2,z4,z6; int32_t ix;