From: Yu Watanabe Date: Tue, 21 Nov 2023 19:44:49 +0000 (+0900) Subject: systemctl: fix typo X-Git-Tag: v255~105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b6d669d5af5b23550c7592432bcfed2ff73c362b;p=platform%2Fupstream%2Fsystemd.git systemctl: fix typo Follow-up for f380473edfa899706d630bb64750ab50c5c04961. --- 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;