Mesa (mesa_7_7_branch): svga: Fix mixed signed comparisons.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Fri Dec 11 12:33:48 UTC 2009


Module: Mesa
Branch: mesa_7_7_branch
Commit: 770323e33e62169827454af74e9f90f09997f962
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=770323e33e62169827454af74e9f90f09997f962

Author: José Fonseca <jfonseca at vmware.com>
Date:   Fri Dec 11 12:09:02 2009 +0000

svga: Fix mixed signed comparisons.

---

 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 e7301ab..ed83ba4 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, 




More information about the mesa-commit mailing list