Author: jgardou Date: Sat Jul 23 20:43:14 2011 New Revision: 52823
URL: http://svn.reactos.org/svn/reactos?rev=52823&view=rev Log: [CRT] - fix stupid gcc warnings patch by Igor Paliychuk
Modified: trunk/reactos/lib/sdk/crt/math/ieee754/j0_y0.c trunk/reactos/lib/sdk/crt/math/ieee754/j1_y1.c
Modified: trunk/reactos/lib/sdk/crt/math/ieee754/j0_y0.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/math/ieee754/j0... ============================================================================== --- trunk/reactos/lib/sdk/crt/math/ieee754/j0_y0.c [iso-8859-1] (original) +++ trunk/reactos/lib/sdk/crt/math/ieee754/j0_y0.c [iso-8859-1] Sat Jul 23 20:43:14 2011 @@ -352,9 +352,9 @@ #endif { #ifdef __STDC__ - const double *p,*q; -#else - double *p,*q; + const double *p = 0,*q = 0; +#else + 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 @@ #endif { #ifdef __STDC__ - const double *p,*q; -#else - double *p,*q; + const double *p = 0,*q = 0; +#else + double *p = 0,*q = 0; #endif double s,r,z,z2,z4,z6,r1,r2,r3,s1,s2,s3; int32_t ix;
Modified: trunk/reactos/lib/sdk/crt/math/ieee754/j1_y1.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/math/ieee754/j1... ============================================================================== --- trunk/reactos/lib/sdk/crt/math/ieee754/j1_y1.c [iso-8859-1] (original) +++ trunk/reactos/lib/sdk/crt/math/ieee754/j1_y1.c [iso-8859-1] Sat Jul 23 20:43:14 2011 @@ -352,9 +352,9 @@ #endif { #ifdef __STDC__ - const double *p,*q; -#else - double *p,*q; + const double *p = 0,*q = 0; +#else + 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 @@ #endif { #ifdef __STDC__ - const double *p,*q; -#else - double *p,*q; + const double *p = 0,*q = 0; +#else + double *p = 0,*q = 0; #endif double s,r,z,r1,r2,r3,s1,s2,s3,z2,z4,z6; int32_t ix;