mirror of
https://github.com/systemd/systemd.git
synced 2026-07-11 18:13:31 +00:00
manager: Fixing a debug printf formatting mistake (#3640)
A 'llu' formatting statement was used in a debugging printf statement instead of a 'PRIu64'. Correcting that mistake here.
This commit is contained in:
committed by
Evgeny Vereshchagin
parent
b12cc5b0f8
commit
1e706c8dff
@@ -1733,7 +1733,7 @@ static void invoke_sigchld_event(Manager *m, Unit *u, const siginfo_t *si) {
|
||||
UNIT_VTABLE(u)->sigchld_event(u, si->si_pid, si->si_code, si->si_status);
|
||||
u->sigchldgen = iteration;
|
||||
} else
|
||||
log_debug("%s already issued a sigchld this iteration %llu, skipping. Pids still being watched %d", u->id, iteration, set_size(u->pids));
|
||||
log_debug("%s already issued a sigchld this iteration %" PRIu64 ", skipping. Pids still being watched %d", u->id, iteration, set_size(u->pids));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user