From 79d70bb28208ba59a09becd70f12eb4123d91db7 Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Wed, 21 May 2025 20:49:19 +0200 Subject: [PATCH] killall: correct argument comment --- src/shared/killall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/killall.c b/src/shared/killall.c index 5db307560f1..8735b4feda6 100644 --- a/src/shared/killall.c +++ b/src/shared/killall.c @@ -53,7 +53,7 @@ static bool is_in_survivor_cgroup(const PidRef *pid) { assert(pidref_is_set(pid)); - r = cg_pidref_get_path(/* root= */ NULL, pid, &cgroup_path); + r = cg_pidref_get_path(/* controller= */ NULL, pid, &cgroup_path); if (r == -EUNATCH) { log_warning_errno(r, "Process " PID_FMT " appears to originate in foreign namespace, ignoring.", pid->pid); return true; -- 2.47.3