summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/svga/svga_sampler_view.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2012-10-16 17:54:37 -0600
committerBrian Paul <brianp@vmware.com>2012-10-16 17:55:39 -0600
commit25cd2c2a8a730d694fb9e4fe839c25c72ddee9a8 (patch)
tree64142c005443111ccf8da4d4bde7e90687abecce /src/gallium/drivers/svga/svga_sampler_view.c
parent4d0458dc6ea4b0c6b6bb67b68fcb9e77f2ccf8c2 (diff)
downloadexternal_mesa3d-25cd2c2a8a730d694fb9e4fe839c25c72ddee9a8.zip
external_mesa3d-25cd2c2a8a730d694fb9e4fe839c25c72ddee9a8.tar.gz
external_mesa3d-25cd2c2a8a730d694fb9e4fe839c25c72ddee9a8.tar.bz2
svga: silence some MSVC signed/unsigned comparison warnings
Diffstat (limited to 'src/gallium/drivers/svga/svga_sampler_view.c')
-rw-r--r--src/gallium/drivers/svga/svga_sampler_view.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/svga/svga_sampler_view.c b/src/gallium/drivers/svga/svga_sampler_view.c
index e8234d6..281a44f 100644
--- a/src/gallium/drivers/svga/svga_sampler_view.c
+++ b/src/gallium/drivers/svga/svga_sampler_view.c
@@ -172,7 +172,8 @@ svga_validate_sampler_view(struct svga_context *svga, struct svga_sampler_view *
struct svga_texture *tex = svga_texture(v->texture);
unsigned numFaces;
unsigned age = 0;
- int i, k;
+ int i;
+ unsigned k;
assert(svga);