From 97fc0ca49bdb37ae0a094c45ab6a1bc9f31a38a2 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Thu, 13 Jul 2023 21:52:20 +0200 Subject: [PATCH] debug: missed properly modify pointer type --- lib/log/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/log/log.c b/lib/log/log.c index 8411b8874..a7cbaa16b 100644 --- a/lib/log/log.c +++ b/lib/log/log.c @@ -248,7 +248,7 @@ static int _get_pid_starttime(int *pid, unsigned long long *starttime) "%*d %*u %*u %*u %*u " /* mjflt */ "%*u %*u %*u %*d %*d " /* cstim */ "%*d %*d %*d %*d " /* itrealvalue */ - "%llu", &starttime) == 1)) + "%llu", starttime) == 1)) return 1; log_debug("Cannot parse content of %s.", statfile);