From 90014d07667294094cdb6d9c5c8ac3f2338781fa Mon Sep 17 00:00:00 2001 From: Timothy Arceri Date: Wed, 8 Feb 2017 11:58:23 +1100 Subject: mesa: use PRId64/PRIu64 when printing 64-bit ints V2: actually use PRIu64 Reviewed-by: Dave Airlie --- src/mesa/main/uniform_query.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa') 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: -- cgit v1.2.3