diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/uniform_query.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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: |