diff --git a/utils/threadpool/threadpool.cpp b/utils/threadpool/threadpool.cpp
|
index da2b5f2..42d9166 100644
|
--- a/utils/threadpool/threadpool.cpp
|
+++ b/utils/threadpool/threadpool.cpp
|
@@ -298,9 +298,9 @@ uint64_t ThreadPool::invoke(const Functor_T& threadfunc)
|
logging::Message::Args args;
|
logging::Message message(5);
|
args.add("invoke: Blocked waiting for thread. Count ");
|
- args.add(fThreadCount);
|
+ args.add((uint64_t)fThreadCount);
|
args.add("max ");
|
- args.add(fMaxThreads);
|
+ args.add((uint64_t)fMaxThreads);
|
message.format( args );
|
logging::LoggingID lid(22);
|
logging::MessageLog ml(lid);
|