From 5d7e626215315b70cefeae618d9bfc71677d11dd Mon Sep 17 00:00:00 2001 From: Masaori Koshiba Date: Mon, 22 May 2023 10:11:31 +0900 Subject: [PATCH] Cleanup: Fix format of doc corruption message --- iocore/cache/CacheRead.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iocore/cache/CacheRead.cc b/iocore/cache/CacheRead.cc index 967d1ae7ef6..315dc246ecd 100644 --- a/iocore/cache/CacheRead.cc +++ b/iocore/cache/CacheRead.cc @@ -908,7 +908,7 @@ CacheVC::openReadStartEarliest(int /* event ATS_UNUSED */, Event * /* e ATS_UNUS if (doc->magic == DOC_CORRUPT) { Warning("Earliest: Doc checksum does not match for %s", key.toHexStr(tmpstring)); } else { - Warning("Earliest : Doc magic does not match for %s", key.toHexStr(tmpstring)); + Warning("Earliest: Doc magic does not match for %s", key.toHexStr(tmpstring)); } // remove the dir entry dir_delete(&key, vol, &dir); @@ -1111,7 +1111,7 @@ CacheVC::openReadStartHead(int event, Event *e) if (doc->magic == DOC_CORRUPT) { Warning("Head: Doc checksum does not match for %s", key.toHexStr(tmpstring)); } else { - Warning("Head : Doc magic does not match for %s", key.toHexStr(tmpstring)); + Warning("Head: Doc magic does not match for %s", key.toHexStr(tmpstring)); } // remove the dir entry dir_delete(&key, vol, &dir);