diff options
author | Brian Paul <[email protected]> | 2014-08-08 07:51:47 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-08-11 09:44:50 -0600 |
commit | 53b13b2eadb866c7752ffb8a1f58dab0e0f25025 (patch) | |
tree | 18dd143aa6453fa75d3337a5037ca7c27705de04 | |
parent | 80fa7fd23eaba390f39b9fef91139b98211fd6f3 (diff) |
st/mesa: use PRId64 for printing 64-bit ints
v2: use signed types/formats
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
-rw-r--r-- | src/mesa/state_tracker/st_cb_bufferobjects.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_cb_bufferobjects.c b/src/mesa/state_tracker/st_cb_bufferobjects.c index 3b4d28d47cf..e0cb979f231 100644 --- a/src/mesa/state_tracker/st_cb_bufferobjects.c +++ b/src/mesa/state_tracker/st_cb_bufferobjects.c @@ -31,6 +31,8 @@ */ +#include <inttypes.h> /* for PRId64 macro */ + #include "main/imports.h" #include "main/mtypes.h" #include "main/arrayobj.h" @@ -271,7 +273,8 @@ st_bufferobj_data(struct gl_context *ctx, pipe_resource_reference( &st_obj->buffer, NULL ); if (ST_DEBUG & DEBUG_BUFFER) { - debug_printf("Create buffer size %td bind 0x%x\n", size, bind); + debug_printf("Create buffer size %" PRId64 " bind 0x%x\n", + (int64_t) size, bind); } if (size != 0) { |