summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-06-17 09:01:32 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-06-17 10:08:22 -0600
commit8460ba4dd7f9c9742e305264cf241381d8011c25 (patch)
tree0deaa251ca3220022facfaa48eff13bcfd1eb0a0 /src
parent43be063efa2c41a5ac6c3fd250b4a0ad8ffe6761 (diff)
downloadglu-8460ba4dd7f9c9742e305264cf241381d8011c25.tar.gz
glu: silence warnings
Diffstat (limited to 'src')
-rw-r--r--src/libutil/quad.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libutil/quad.c b/src/libutil/quad.c
index e604539..1ae7442 100644
--- a/src/libutil/quad.c
+++ b/src/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;