Module: Mesa
Branch: master
Commit: 9b3362932df0ec27efd605dfd0838c76111bb23e
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=9b3362932df0ec27efd605dfd0838c76111bb23e

Author: Kenneth Graunke <kenn...@whitecape.org>
Date:   Fri Aug 20 02:41:42 2010 -0700

i965: Fix compile warnings on 64-bit Linux.

format ‘%d’ expects type ‘int’, but argument 2 has type ‘long int’

---

 src/mesa/drivers/dri/i965/brw_wm_debug.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_wm_debug.c 
b/src/mesa/drivers/dri/i965/brw_wm_debug.c
index a78cc8b..191670d 100644
--- a/src/mesa/drivers/dri/i965/brw_wm_debug.c
+++ b/src/mesa/drivers/dri/i965/brw_wm_debug.c
@@ -44,16 +44,16 @@ void brw_wm_print_value( struct brw_wm_compile *c,
       printf("undef");
    else if( value - c->vreg >= 0 &&
            value - c->vreg < BRW_WM_MAX_VREG)
-      printf("r%d", value - c->vreg);
+      printf("r%ld", value - c->vreg);
    else if (value - c->creg >= 0 &&
            value - c->creg < BRW_WM_MAX_PARAM)
-      printf("c%d", value - c->creg);
+      printf("c%ld", value - c->creg);
    else if (value - c->payload.input_interp >= 0 &&
            value - c->payload.input_interp < FRAG_ATTRIB_MAX)
-      printf("i%d", value - c->payload.input_interp);
+      printf("i%ld", value - c->payload.input_interp);
    else if (value - c->payload.depth >= 0 &&
            value - c->payload.depth < FRAG_ATTRIB_MAX)
-      printf("d%d", value - c->payload.depth);
+      printf("d%ld", value - c->payload.depth);
    else 
       printf("?");
 }

_______________________________________________
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to