Browse Source

gallium: cast to silence waring

tags/7.8-rc1
Brian Paul 15 years ago
parent
commit
4b1241bf76
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c

+ 1
- 1
src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c View File

@@ -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);

Loading…
Cancel
Save