From: Brian Paul Date: Fri, 13 Jul 2001 16:39:19 +0000 (+0000) Subject: silence an uninitialized var warning X-Git-Tag: 062012170305~27016 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cff1cfd90d94548c7b9499ffcac5bd13ca338f85;p=profile%2Fivi%2Fmesa.git silence an uninitialized var warning --- diff --git a/src/mesa/tnl/t_imm_dlist.c b/src/mesa/tnl/t_imm_dlist.c index 9c22ed3..3cfdf1e 100644 --- a/src/mesa/tnl/t_imm_dlist.c +++ b/src/mesa/tnl/t_imm_dlist.c @@ -1,4 +1,4 @@ -/* $Id: t_imm_dlist.c,v 1.21 2001/06/28 17:34:14 keithw Exp $ */ +/* $Id: t_imm_dlist.c,v 1.22 2001/07/13 16:39:19 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -96,7 +96,7 @@ static void build_normal_lengths( struct immediate *IM ) static void fixup_normal_lengths( struct immediate *IM ) { GLuint i; - GLfloat len; + GLfloat len = 1.0; /* just to silence warnings */ GLfloat (*data)[3] = IM->Normal; GLfloat *dest = IM->NormalLengthPtr; GLuint *flags = IM->Flag;