diff options
author | Brian Paul <[email protected]> | 2008-06-17 09:01:32 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-06-17 10:08:22 -0600 |
commit | 51ad6e34251f56e476432b92bd47858448c0e7ca (patch) | |
tree | 12ac077e057668e3041e50df7834674c5ed61a6a /src/glu/sgi | |
parent | a1523c61eaa47825f0e4ca9076b83dcca19e1bd1 (diff) |
glu: silence warnings
Diffstat (limited to 'src/glu/sgi')
-rw-r--r-- | src/glu/sgi/libutil/quad.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glu/sgi/libutil/quad.c b/src/glu/sgi/libutil/quad.c index e604539c82f..1ae7442c80a 100644 --- a/src/glu/sgi/libutil/quad.c +++ b/src/glu/sgi/libutil/quad.c @@ -713,8 +713,8 @@ gluSphere(GLUquadric *qobj, GLdouble radius, GLint slices, GLint stacks) GLfloat cosCache3b[CACHE_SIZE]; GLfloat angle; GLfloat zLow, zHigh; - GLfloat sintemp1, sintemp2, sintemp3 = 0.0, sintemp4 = 0.0; - GLfloat costemp1, costemp2 = 0.0, costemp3 = 0.0, costemp4 = 0.0; + GLfloat sintemp1 = 0.0, sintemp2 = 0.0, sintemp3 = 0.0, sintemp4 = 0.0; + GLfloat costemp1 = 0.0, costemp2 = 0.0, costemp3 = 0.0, costemp4 = 0.0; GLboolean needCache2, needCache3; GLint start, finish; |