From: Brian Date: Fri, 11 Jan 2008 18:27:09 +0000 (-0700) Subject: s/int/uint/ to silence warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d4c806302e96a0fd97a4613bc29f4c9863ae89fe;p=mesa.git s/int/uint/ to silence warning --- diff --git a/src/mesa/pipe/draw/draw_context.c b/src/mesa/pipe/draw/draw_context.c index a9ff54404f6..d134b05717a 100644 --- a/src/mesa/pipe/draw/draw_context.c +++ b/src/mesa/pipe/draw/draw_context.c @@ -69,7 +69,7 @@ struct draw_context *draw_create( void ) /* Statically allocate maximum sized vertices for the cache - could be cleverer... */ { - int i; + uint i; char *tmp = MALLOC( Elements(draw->vcache.vertex) * MAX_VERTEX_SIZE ); for (i = 0; i < Elements(draw->vcache.vertex); i++)