From 41e3e01882a919d15925e8b0cec88d45b32c7ed8 Mon Sep 17 00:00:00 2001 From: Ivan Rogach Date: Tue, 26 Nov 2024 12:59:08 +0100 Subject: [PATCH] Fix log line Signed-off-by: Ivan Rogach --- 3rd_party/cert_rehash/c_rehash.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3rd_party/cert_rehash/c_rehash.hpp b/3rd_party/cert_rehash/c_rehash.hpp index f251791..94f5bdf 100644 --- a/3rd_party/cert_rehash/c_rehash.hpp +++ b/3rd_party/cert_rehash/c_rehash.hpp @@ -267,8 +267,8 @@ static int hash_dir(const char* dirname) { for (ei = bi->first_entry; ei; ei = nextei) { nextei = ei->next; - EVLOG_debug << "\t(old_id " << ei->old_id << ", need_symlink " << ei->need_symlink << ") Cert " - << std::string(ei->filename, strlen(ei->filename)) << ":"; + EVLOG_debug << "\t(old_id " << ei->old_id << ", need_symlink " << static_cast(ei->need_symlink) + << ") Cert " << std::string(ei->filename, strlen(ei->filename)) << ":"; if (ei->old_id < bi->num_needed) { /* Link exists, and is used as-is */