From 6650858e243f81a8560e636f5309d7b51220513b Mon Sep 17 00:00:00 2001 From: otavepto Date: Thu, 21 Dec 2023 20:43:44 +0200 Subject: [PATCH] disable another warning message after rebase --- dll/common_includes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dll/common_includes.h b/dll/common_includes.h index 59c51fbd..d831bc9e 100644 --- a/dll/common_includes.h +++ b/dll/common_includes.h @@ -209,7 +209,7 @@ static inline std::string ascii_to_lowercase(std::string data) { static inline void thisThreadYieldFor(std::chrono::microseconds u) { - PRINT_DEBUG("Thread is waiting for %lld us\n", u.count()); + PRINT_DEBUG("Thread is waiting for %lld us\n", (long long int)u.count()); const auto start = std::chrono::high_resolution_clock::now(); const auto end = start + u; do