aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/apps/vespa-tsan-digest/tsan_digest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vespalib/src/apps/vespa-tsan-digest/tsan_digest.cpp')
-rw-r--r--vespalib/src/apps/vespa-tsan-digest/tsan_digest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespalib/src/apps/vespa-tsan-digest/tsan_digest.cpp b/vespalib/src/apps/vespa-tsan-digest/tsan_digest.cpp
index 2117db276d8..d015cdb0f89 100644
--- a/vespalib/src/apps/vespa-tsan-digest/tsan_digest.cpp
+++ b/vespalib/src/apps/vespa-tsan-digest/tsan_digest.cpp
@@ -220,7 +220,7 @@ public:
++raw_reports;
}
std::vector<vespalib::string> make_keys() const override {
- return {fmt("raw:%zu", get_hash(_lines))};
+ return {fmt("raw:%" PRIu64, get_hash(_lines))};
}
void merge(const Report &) override { ++_count; }
size_t count() const override { return _count; }
@@ -277,7 +277,7 @@ public:
std::vector<vespalib::string> make_keys() const override {
std::vector<vespalib::string> result;
for (const auto &node: _nodes) {
- result.push_back(fmt("race:%zu", node.trace.hash()));
+ result.push_back(fmt("race:%" PRIu64, node.trace.hash()));
}
return result;
}