aboutsummaryrefslogtreecommitdiffstats
path: root/fbench/src/test/httpclient.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fbench/src/test/httpclient.cpp')
-rw-r--r--fbench/src/test/httpclient.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/fbench/src/test/httpclient.cpp b/fbench/src/test/httpclient.cpp
index 0d350c393c1..5d11663f1da 100644
--- a/fbench/src/test/httpclient.cpp
+++ b/fbench/src/test/httpclient.cpp
@@ -4,6 +4,7 @@
#include <httpclient/httpclient.h>
#include <iostream>
#include <thread>
+#include <cinttypes>
int
main(int argc, char **argv)
@@ -52,6 +53,6 @@ main(int argc, char **argv)
} else {
printf("ERROR: could not fetch URL content.\n");
}
- printf("REUSE COUNT: %zu\n", client->GetReuseCount());
+ printf("REUSE COUNT: %" PRIu64 "\n", client->GetReuseCount());
return 0;
}