diff options
author | Brian Paul <[email protected]> | 2001-09-14 21:30:31 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-09-14 21:30:31 +0000 |
commit | edf8c06270a0e62f33e3f45e1f0307acfeff3b5d (patch) | |
tree | 6da442d6083e6948895479866c884d60392bb7e5 /src/mesa/tnl/t_imm_eval.c | |
parent | 7cc49c2dc84ce17a9b4cc1a376da74515a724c92 (diff) |
more warning fixes (Karl Schultz)
Diffstat (limited to 'src/mesa/tnl/t_imm_eval.c')
-rw-r--r-- | src/mesa/tnl/t_imm_eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_imm_eval.c b/src/mesa/tnl/t_imm_eval.c index c25b03725af..d90884d9426 100644 --- a/src/mesa/tnl/t_imm_eval.c +++ b/src/mesa/tnl/t_imm_eval.c @@ -1,4 +1,4 @@ -/* $Id: t_imm_eval.c,v 1.17 2001/08/14 00:59:08 keithw Exp $ */ +/* $Id: t_imm_eval.c,v 1.18 2001/09/14 21:30:31 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -353,7 +353,7 @@ static void copy_4f_stride( GLfloat to[][4], GLfloat *from, static void copy_3f( GLfloat to[][3], GLfloat from[][3], GLuint count ) { - int i; + GLuint i; /* MEMCPY( to, from, (count) * sizeof(to[0])); */ for (i = 0 ; i < count ; i++) { /* fprintf(stderr, "copy norm %d from %p: %f %f %f\n", i, */ |