diff options
author | José Fonseca <[email protected]> | 2009-12-11 12:09:02 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-12-11 12:28:53 +0000 |
commit | 770323e33e62169827454af74e9f90f09997f962 (patch) | |
tree | 7e4b72d712571b04fd1547f6e29bf29617d45f15 /src/gallium/drivers | |
parent | a2937a2f4ecf22a5a4242cd0a350f20228f50232 (diff) |
svga: Fix mixed signed comparisons.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/svga/svga_screen_texture.c | 2 |
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 e7301aba841..ed83ba48f09 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, |