summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/compiler/glsl/tests/cache_test.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/compiler/glsl/tests/cache_test.c b/src/compiler/glsl/tests/cache_test.c
index ca22605f3e4..0ef05aacb26 100644
--- a/src/compiler/glsl/tests/cache_test.c
+++ b/src/compiler/glsl/tests/cache_test.c
@@ -30,6 +30,7 @@
#include <ftw.h>
#include <errno.h>
#include <stdarg.h>
+#include <inttypes.h>
#include "util/mesa-sha1.h"
#include "util/disk_cache.h"
@@ -42,7 +43,8 @@ static void
expect_equal(uint64_t actual, uint64_t expected, const char *test)
{
if (actual != expected) {
- fprintf(stderr, "Error: Test '%s' failed: Expected=%ld, Actual=%ld\n",
+ fprintf(stderr, "Error: Test '%s' failed: Expected=%" PRIu64
+ ", Actual=%" PRIu64 "\n",
test, expected, actual);
error = true;
}