From: Brian Paul Date: Fri, 8 Aug 2014 13:51:47 +0000 (-0600) Subject: st/mesa: use PRId64 for printing 64-bit ints X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=53b13b2eadb866c7752ffb8a1f58dab0e0f25025;p=mesa.git st/mesa: use PRId64 for printing 64-bit ints v2: use signed types/formats Reviewed-by: Ian Romanick Reviewed-by: Roland Scheidegger --- 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 /* 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) {