Mesa (master): util: add casts in fprintf() calls to silence warnings

Brian Paul brianp at kemper.freedesktop.org
Sat Dec 3 16:32:23 UTC 2011


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

Author: Brian Paul <brianp at vmware.com>
Date:   Sat Dec  3 09:31:43 2011 -0700

util: add casts in fprintf() calls to silence warnings

And wrap to 80 columns.

---

 src/gallium/auxiliary/util/u_debug_refcnt.c |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/gallium/auxiliary/util/u_debug_refcnt.c b/src/gallium/auxiliary/util/u_debug_refcnt.c
index b94f1af..a51b4c5 100644
--- a/src/gallium/auxiliary/util/u_debug_refcnt.c
+++ b/src/gallium/auxiliary/util/u_debug_refcnt.c
@@ -163,27 +163,29 @@ void debug_reference_slowpath(const struct pipe_reference* p, debug_reference_de
 
       if(!existing)
       {
-         fprintf(stream, "<%s> %p %u Create\n", buf, p, serial);
+         fprintf(stream, "<%s> %p %u Create\n", buf, (void *) p, serial);
          dump_stack(symbols);
 
          /* this is there to provide a gradual change even if we don't see the initialization */
          for(i = 1; i <= refcnt - change; ++i)
          {
-            fprintf(stream, "<%s> %p %u AddRef %u\n", buf, p, serial, i);
+            fprintf(stream, "<%s> %p %u AddRef %u\n", buf, (void *) p,
+                    serial, i);
             dump_stack(symbols);
          }
       }
 
       if(change)
       {
-         fprintf(stream, "<%s> %p %u %s %u\n", buf, p, serial, change > 0 ? "AddRef" : "Release", refcnt);
+         fprintf(stream, "<%s> %p %u %s %u\n", buf, (void *) p, serial,
+                 change > 0 ? "AddRef" : "Release", refcnt);
          dump_stack(symbols);
       }
 
       if(!refcnt)
       {
          debug_serial_delete((void*)p);
-         fprintf(stream, "<%s> %p %u Destroy\n", buf, p, serial);
+         fprintf(stream, "<%s> %p %u Destroy\n", buf, (void *) p, serial);
          dump_stack(symbols);
       }
 




More information about the mesa-commit mailing list