You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ma...@apache.org on 2022/05/06 15:37:58 UTC

[trafficserver] branch master updated: Fix a compile error (#8829)

This is an automated email from the ASF dual-hosted git repository.

maskit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 857781fe2 Fix a compile error (#8829)
857781fe2 is described below

commit 857781fe2492eccad07c63a2e7957c7bda6d8c6c
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Sat May 7 00:37:50 2022 +0900

    Fix a compile error (#8829)
---
 iocore/cache/CacheWrite.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iocore/cache/CacheWrite.cc b/iocore/cache/CacheWrite.cc
index 20baeb393..93c49ae48 100644
--- a/iocore/cache/CacheWrite.cc
+++ b/iocore/cache/CacheWrite.cc
@@ -290,7 +290,7 @@ Vol::force_evacuate_head(Dir *evac_dir, int pinned)
 {
   auto bucket = dir_evac_bucket(evac_dir);
   if (!evac_bucket_valid(bucket)) {
-    DDebug("cache_evac", "dir_evac_bucket out of bounds, skipping evacuate: %ld(%d), %d, %d", bucket, evacuate_size,
+    DDebug("cache_evac", "dir_evac_bucket out of bounds, skipping evacuate: %" PRId64 "(%d), %d, %d", bucket, evacuate_size,
            (int)dir_offset(evac_dir), (int)dir_phase(evac_dir));
     return nullptr;
   }