From b6d669d5af5b23550c7592432bcfed2ff73c362b Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Wed, 22 Nov 2023 04:44:49 +0900 Subject: [PATCH] systemctl: fix typo Follow-up for f380473edfa899706d630bb64750ab50c5c04961. --- src/systemctl/systemctl-show.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systemctl/systemctl-show.c b/src/systemctl/systemctl-show.c index 7c5bf1e..4ec2a7c 100644 --- a/src/systemctl/systemctl-show.c +++ b/src/systemctl/systemctl-show.c @@ -708,7 +708,7 @@ static void print_status_info( /* Only show current swap if it ever was non-zero or is currently non-zero. In both cases memory_swap_peak will be non-zero (and not CGROUP_LIMIT_MAX). - Only show the available memory if it was artifically limited. */ + Only show the available memory if it was artificially limited. */ bool show_memory_swap = !IN_SET(i->memory_swap_peak, 0, CGROUP_LIMIT_MAX), show_memory_zswap_current = !IN_SET(i->memory_zswap_current, 0, CGROUP_LIMIT_MAX), show_memory_available = i->memory_high != CGROUP_LIMIT_MAX || i->memory_max != CGROUP_LIMIT_MAX; -- 2.7.4