summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/draw/draw_context.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2012-10-16 18:32:57 -0600
committerBrian Paul <[email protected]>2012-10-17 10:13:30 -0600
commitf03191048668ebcda56053f4c908e1ac0d98edd0 (patch)
tree5c259704e79c8451355512e9e6204e296b491e52 /src/gallium/auxiliary/draw/draw_context.c
parenta115a29153540bc8f8fbb2b99cd078e6b417c741 (diff)
draw: silence MSVC signed/unsigned comparison warnings
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_context.c')
-rw-r--r--src/gallium/auxiliary/draw/draw_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_context.c b/src/gallium/auxiliary/draw/draw_context.c
index 53be8f7eac5..48b5db34027 100644
--- a/src/gallium/auxiliary/draw/draw_context.c
+++ b/src/gallium/auxiliary/draw/draw_context.c
@@ -159,7 +159,7 @@ boolean draw_init(struct draw_context *draw)
void draw_destroy( struct draw_context *draw )
{
struct pipe_context *pipe;
- int i, j;
+ unsigned i, j;
if (!draw)
return;