From a77f7b0750b0ce0030e77a21f8b03aa0e2399bdd Mon Sep 17 00:00:00 2001 From: Tor Egge Date: Wed, 13 Mar 2019 20:40:07 +0100 Subject: Fix format string in storageframework module. --- .../storageframework/defaultimplementation/thread/threadimpl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'storageframework') diff --git a/storageframework/src/vespa/storageframework/defaultimplementation/thread/threadimpl.cpp b/storageframework/src/vespa/storageframework/defaultimplementation/thread/threadimpl.cpp index 7c30944d911..4b9b2639d3b 100644 --- a/storageframework/src/vespa/storageframework/defaultimplementation/thread/threadimpl.cpp +++ b/storageframework/src/vespa/storageframework/defaultimplementation/thread/threadimpl.cpp @@ -82,8 +82,8 @@ ThreadImpl::registerTick(CycleType cycleType, MilliSecTime time) if (data._lastTickMs == 0) { return; } if (previousTickMs > nowMs) { - LOGBP(warning, "Thread is registering tick at time %lu, but " - "last time it registered a tick, the time was %lu" + LOGBP(warning, "Thread is registering tick at time %" PRIu64 ", but " + "last time it registered a tick, the time was %" PRIu64 ". Assuming clock has been adjusted backwards", nowMs, previousTickMs); return; -- cgit v1.2.3