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:
parent
b1c1d77597
commit
2936757a78
1 changed files with 2 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue