summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-02-10 16:44:05 -0700
committerBrian Paul <brianp@vmware.com>2010-02-10 16:44:05 -0700
commit4b1241bf76c7f7ed6d1088a266e9ac000b1f5a54 (patch)
treed5473dd1b9484957d5ef5cd9d617fc899d97c71a
parentf6bcce030816fbf3c65d983fe6ff18a4d6cff935 (diff)
gallium: cast to silence waring
-rw-r--r--src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c b/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c
index 93f8960641..c2593cf165 100644
--- a/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c
+++ b/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c
@@ -349,7 +349,7 @@ pb_debug_manager_dump(struct pb_debug_manager *mgr)
while(curr != &mgr->list) {
buf = LIST_ENTRY(struct pb_debug_buffer, curr, head);
- debug_printf("buffer = %p\n", buf);
+ debug_printf("buffer = %p\n", (void *) buf);
debug_printf(" .size = 0x%x\n", buf->base.base.size);
debug_backtrace_dump(buf->create_backtrace, PB_DEBUG_CREATE_BACKTRACE);