From: Timothy Arceri Date: Wed, 8 Feb 2017 00:58:23 +0000 (+1100) Subject: mesa: use PRId64/PRIu64 when printing 64-bit ints X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=90014d07667294094cdb6d9c5c8ac3f2338781fa;p=mesa.git mesa: use PRId64/PRIu64 when printing 64-bit ints V2: actually use PRIu64 Reviewed-by: Dave Airlie --- diff --git a/src/mesa/main/uniform_query.cpp b/src/mesa/main/uniform_query.cpp index f177e963337..3f7f705c598 100644 --- a/src/mesa/main/uniform_query.cpp +++ b/src/mesa/main/uniform_query.cpp @@ -573,13 +573,13 @@ log_uniform(const void *values, enum glsl_base_type basicType, case GLSL_TYPE_UINT64: { uint64_t tmp; memcpy(&tmp, &v[i * 2].u, sizeof(tmp)); - printf("%lu ", tmp); + printf("%" PRIu64 " ", tmp); break; } case GLSL_TYPE_INT64: { int64_t tmp; memcpy(&tmp, &v[i * 2].u, sizeof(tmp)); - printf("%ld ", tmp); + printf("%" PRId64 " ", tmp); break; } case GLSL_TYPE_FLOAT: