From 2936757a78f629764e2bf545ad574fbe8b211032 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sun, 11 Oct 2015 14:50:55 +0200 Subject: [PATCH] added correct fmt string identifier for uint64_t --- server/src/path.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/src/path.c b/server/src/path.c index bf513969b..38872fecf 100644 --- a/server/src/path.c +++ b/server/src/path.c @@ -8,6 +8,7 @@ #include #include +#include #include "utils.h" #include "path.h" @@ -60,7 +61,7 @@ static void * path_run_async(void *arg) uint64_t expir = timerfd_wait(p->tfd); if (expir > 1) { p->overrun += expir; - warn("Overrun detected for path: overruns=%llu", expir); + warn("Overrun detected for path: overruns=%" PRIu64, expir); } if (path_run_hook(p, HOOK_ASYNC))