From 343fc05a3557cf2c290d5cf77ab12b0851f10d17 Mon Sep 17 00:00:00 2001 From: Tor Egge Date: Mon, 20 Nov 2023 21:42:09 +0100 Subject: Fix format strings. --- .../src/vespa/storage/distributor/distributor_bucket_space_repo.cpp | 5 +++-- storage/src/vespa/storage/persistence/asynchandler.cpp | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/storage/src/vespa/storage/distributor/distributor_bucket_space_repo.cpp b/storage/src/vespa/storage/distributor/distributor_bucket_space_repo.cpp index 7dea2e621e1..e6de5449b60 100644 --- a/storage/src/vespa/storage/distributor/distributor_bucket_space_repo.cpp +++ b/storage/src/vespa/storage/distributor/distributor_bucket_space_repo.cpp @@ -7,6 +7,7 @@ #include #include #include +#include #include LOG_SETUP(".distributor.distributor_bucket_space_repo"); @@ -36,7 +37,7 @@ DistributorBucketSpaceRepo::get(BucketSpace bucketSpace) { auto itr = _map.find(bucketSpace); if (itr == _map.end()) [[unlikely]] { - LOG(error, "Bucket space %zu does not have a valid mapping. %s", bucketSpace.getId(), vespalib::getStackTrace(0).c_str()); + LOG(error, "Bucket space %" PRIu64 " does not have a valid mapping. %s", bucketSpace.getId(), vespalib::getStackTrace(0).c_str()); abort(); } return *itr->second; @@ -47,7 +48,7 @@ DistributorBucketSpaceRepo::get(BucketSpace bucketSpace) const { auto itr = _map.find(bucketSpace); if (itr == _map.end()) [[unlikely]] { - LOG(error, "Bucket space %zu does not have a valid mapping. %s", bucketSpace.getId(), vespalib::getStackTrace(0).c_str()); + LOG(error, "Bucket space %" PRIu64 " does not have a valid mapping. %s", bucketSpace.getId(), vespalib::getStackTrace(0).c_str()); abort(); } return *itr->second; diff --git a/storage/src/vespa/storage/persistence/asynchandler.cpp b/storage/src/vespa/storage/persistence/asynchandler.cpp index 8e962a59809..a69f9e55afb 100644 --- a/storage/src/vespa/storage/persistence/asynchandler.cpp +++ b/storage/src/vespa/storage/persistence/asynchandler.cpp @@ -319,7 +319,7 @@ AsyncHandler::handle_delete_bucket_throttling(api::DeleteBucketCommand& cmd, Mes LOG(spam, "%s: completed removeByGidAsync operation", bucket.toString().c_str()); // Nothing else clever to do here. Throttle token and deleteBucket dispatch refs dropped implicitly. }); - LOG(spam, "%s: about to invoke removeByGidAsync(%s, %s, %zu)", cmd.getBucket().toString().c_str(), + LOG(spam, "%s: about to invoke removeByGidAsync(%s, %s, %" PRIu64 ")", cmd.getBucket().toString().c_str(), vespalib::string(meta->getDocumentType()).c_str(), meta->getGid().toString().c_str(), meta->getTimestamp().getValue()); _spi.removeByGidAsync(spi_bucket, std::move(to_remove), std::make_unique(_sequencedExecutor, cmd.getBucketId(), std::move(task))); } -- cgit v1.2.3