aboutsummaryrefslogtreecommitdiffstats
path: root/storageframework
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2019-03-13 20:40:07 +0100
committerTor Egge <Tor.Egge@broadpark.no>2019-03-13 20:40:07 +0100
commita77f7b0750b0ce0030e77a21f8b03aa0e2399bdd (patch)
tree9fa60ef2f0c4a1f396a289a8a1062b8f474327c7 /storageframework
parent1af4ef96c040e7f70635d9afb02675da045cef06 (diff)
Fix format string in storageframework module.
Diffstat (limited to 'storageframework')
-rw-r--r--storageframework/src/vespa/storageframework/defaultimplementation/thread/threadimpl.cpp4
1 files changed, 2 insertions, 2 deletions
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;