diff options
author | Brian <[email protected]> | 2008-01-11 11:27:09 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-01-11 11:27:09 -0700 |
commit | d4c806302e96a0fd97a4613bc29f4c9863ae89fe (patch) | |
tree | cccb369c8d02bb2b9666d87e2aa906dad8a7d947 /src/mesa/pipe/draw | |
parent | 45230b4e082473f7e1f0c0a18dd0e2fc9e5508e1 (diff) |
s/int/uint/ to silence warning
Diffstat (limited to 'src/mesa/pipe/draw')
-rw-r--r-- | src/mesa/pipe/draw/draw_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
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++) |