summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2020-01-14 19:38:48 +0100
committerGitHub <noreply@github.com>2020-01-14 19:38:48 +0100
commitf8508525c37fc8a6a65ebaec538e66139a57094b (patch)
tree9820ecf127e46e96bec8b84ec0b089e6d7405e23
parent7eaf13729fce512b746c2bf94188afa21bbefa04 (diff)
parentb285c58aa6dbdc159f7095f9941ee949d84f8501 (diff)
Merge pull request #11780 from vespa-engine/toregge/fix-format-string-docstore-compacter
Fix format string
-rw-r--r--searchlib/src/vespa/searchlib/docstore/compacter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/docstore/compacter.cpp b/searchlib/src/vespa/searchlib/docstore/compacter.cpp
index 51c9c4bb5bc..6965c2b34c9 100644
--- a/searchlib/src/vespa/searchlib/docstore/compacter.cpp
+++ b/searchlib/src/vespa/searchlib/docstore/compacter.cpp
@@ -78,7 +78,7 @@ BucketCompacter::close()
chunkCount += store.getChunkCount();
}
LOG(info, "Have read %ld lids and placed them in %ld buckets. Temporary compressed in %ld chunks."
- " Max bucket guard held for %ld us, and last before close for %ld us",
+ " Max bucket guard held for %" PRId64 " us, and last before close for %" PRId64 " us",
lidCount1, bucketCount, chunkCount, vespalib::count_us(_maxBucketGuardDuration), vespalib::count_us(lastBucketGuardDuration));
for (StoreByBucket & store : _tmpStore) {