From: Jelle van der Waa Date: Wed, 21 May 2025 18:49:19 +0000 (+0200) Subject: killall: correct argument comment X-Git-Tag: v258-rc1~505^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79d70bb28208ba59a09becd70f12eb4123d91db7;p=thirdparty%2Fsystemd.git killall: correct argument comment --- 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;