1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

added correct fmt string identifier for uint64_t

This commit is contained in:
Steffen Vogel 2015-10-11 14:50:55 +02:00
parent b1c1d77597
commit 2936757a78

View file

@ -8,6 +8,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <inttypes.h>
#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))