summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/svga/svga_pipe_misc.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2012-10-16 17:54:37 -0600
committerBrian Paul <[email protected]>2012-10-16 17:55:39 -0600
commit25cd2c2a8a730d694fb9e4fe839c25c72ddee9a8 (patch)
tree64142c005443111ccf8da4d4bde7e90687abecce /src/gallium/drivers/svga/svga_pipe_misc.c
parent4d0458dc6ea4b0c6b6bb67b68fcb9e77f2ccf8c2 (diff)
svga: silence some MSVC signed/unsigned comparison warnings
Diffstat (limited to 'src/gallium/drivers/svga/svga_pipe_misc.c')
-rw-r--r--src/gallium/drivers/svga/svga_pipe_misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/svga/svga_pipe_misc.c b/src/gallium/drivers/svga/svga_pipe_misc.c
index 2b6269a7b2e..7884b6d236b 100644
--- a/src/gallium/drivers/svga/svga_pipe_misc.c
+++ b/src/gallium/drivers/svga/svga_pipe_misc.c
@@ -75,7 +75,7 @@ static void svga_set_framebuffer_state(struct pipe_context *pipe,
struct svga_context *svga = svga_context(pipe);
struct pipe_framebuffer_state *dst = &svga->curr.framebuffer;
boolean propagate = FALSE;
- int i;
+ unsigned i;
dst->width = fb->width;
dst->height = fb->height;