diff options
author | Keith Whitwell <[email protected]> | 2009-09-24 16:49:05 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-09-24 16:49:05 +0100 |
commit | fca7f384418fa6e353d41b2e05117e0553526053 (patch) | |
tree | aa64409ddb4c617cc8db6b516ff7512a98cc408b /src/gallium/auxiliary/pipebuffer | |
parent | 0c55dd8094cad716c4b30316b5c8f0d9a0b72905 (diff) |
pipebuffer: fix printf warnings
Diffstat (limited to 'src/gallium/auxiliary/pipebuffer')
-rw-r--r-- | src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c | 2 |
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 1b4df28c707..6e3214ca9c9 100644 --- a/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c +++ b/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c @@ -350,7 +350,7 @@ pb_debug_manager_dump(struct pb_debug_manager *mgr) buf = LIST_ENTRY(struct pb_debug_buffer, curr, head); debug_printf("buffer = %p\n", buf); - debug_printf(" .size = %p\n", buf->base.base.size); + debug_printf(" .size = 0x%x\n", buf->base.base.size); debug_backtrace_dump(buf->create_backtrace, PB_DEBUG_CREATE_BACKTRACE); curr = next; |