aboutsummaryrefslogtreecommitdiffstats
path: root/executor/executor_linux.cc
diff options
context:
space:
mode:
Diffstat (limited to 'executor/executor_linux.cc')
-rw-r--r--executor/executor_linux.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/executor/executor_linux.cc b/executor/executor_linux.cc
index 38ecf42f5..d66be92d2 100644
--- a/executor/executor_linux.cc
+++ b/executor/executor_linux.cc
@@ -262,9 +262,9 @@ uint64_t read_cover_size(thread_t* th)
if (!flag_cover)
return 0;
uint64_t n = __atomic_load_n(th->cover_size_ptr, __ATOMIC_RELAXED);
- debug("#%d: read cover size = %u\n", th->id, n);
+ debug("#%d: read cover size = %llu\n", th->id, n);
if (n >= kCoverSize)
- fail("#%d: too much cover %u", th->id, n);
+ fail("#%d: too much cover %llu", th->id, n);
return n;
}