summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-12-11 12:09:02 +0000
committerJosé Fonseca <jfonseca@vmware.com>2009-12-11 12:28:53 +0000
commit770323e33e62169827454af74e9f90f09997f962 (patch)
tree7e4b72d712571b04fd1547f6e29bf29617d45f15 /src
parenta2937a2f4ecf22a5a4242cd0a350f20228f50232 (diff)
svga: Fix mixed signed comparisons.
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/svga/svga_screen_texture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/svga/svga_screen_texture.c b/src/gallium/drivers/svga/svga_screen_texture.c
index e7301aba84..ed83ba48f0 100644
--- a/src/gallium/drivers/svga/svga_screen_texture.c
+++ b/src/gallium/drivers/svga/svga_screen_texture.c
@@ -528,7 +528,7 @@ svga_texture_view_surface(struct pipe_context *pipe,
{
struct svga_screen *ss = svga_screen(tex->base.screen);
struct svga_winsys_surface *handle;
- int i, j;
+ uint32_t i, j;
unsigned z_offset = 0;
SVGA_DBG(DEBUG_PERF,