diff options
author | Brian Paul <[email protected]> | 2002-04-19 00:23:08 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-04-19 00:23:08 +0000 |
commit | db07de057f10ab7ab5be84352b674b200a0a9e22 (patch) | |
tree | 5e28b5366a40b2a3b127526324f631eb79a6e55e /src/mesa/main/api_arrayelt.c | |
parent | 36c3df78f4592443de7c065b6d539f4c2914d870 (diff) |
added some casts
Diffstat (limited to 'src/mesa/main/api_arrayelt.c')
-rw-r--r-- | src/mesa/main/api_arrayelt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/api_arrayelt.c b/src/mesa/main/api_arrayelt.c index a0b7f155996..acca5701a53 100644 --- a/src/mesa/main/api_arrayelt.c +++ b/src/mesa/main/api_arrayelt.c @@ -1,4 +1,4 @@ -/* $Id: api_arrayelt.c,v 1.7 2002/04/09 16:56:50 keithw Exp $ */ +/* $Id: api_arrayelt.c,v 1.8 2002/04/19 00:23:08 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -275,7 +275,7 @@ static void _ae_update_state( GLcontext *ctx ) AEcontext *actx = AE_CONTEXT(ctx); AEtexarray *ta = actx->texarrays; AEarray *aa = actx->arrays; - int i; + GLuint i; for (i = 0 ; i < ctx->Const.MaxTextureUnits ; i++) if (ctx->Array.TexCoord[i].Enabled) { |