diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-11-13 12:28:22 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2023-11-13 13:54:56 +0100 |
commit | 58cde42f65cabd2f1c37ee72b123d8d417ec6227 (patch) | |
tree | 24c322c8a82bb3465af7c6714c012410da1f3e89 /src/systemctl/systemctl-show.c | |
parent | conf-parser: remove unused condition (diff) | |
download | systemd-58cde42f65cabd2f1c37ee72b123d8d417ec6227.tar.xz systemd-58cde42f65cabd2f1c37ee72b123d8d417ec6227.zip |
core: rename MemoryZswapCurrent -> MemoryZSwapCurrent
Follow-up for 26caa66867ec921621df023654fc6a2186a21589.
Diffstat (limited to '')
-rw-r--r-- | src/systemctl/systemctl-show.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl/systemctl-show.c b/src/systemctl/systemctl-show.c index 1667ba4004..f6ffe3bfae 100644 --- a/src/systemctl/systemctl-show.c +++ b/src/systemctl/systemctl-show.c @@ -2058,7 +2058,7 @@ static int show_one( { "MemoryPeak", "t", NULL, offsetof(UnitStatusInfo, memory_peak) }, { "MemorySwapCurrent", "t", NULL, offsetof(UnitStatusInfo, memory_swap_current) }, { "MemorySwapPeak", "t", NULL, offsetof(UnitStatusInfo, memory_swap_peak) }, - { "MemoryZswapCurrent", "t", NULL, offsetof(UnitStatusInfo, memory_zswap_current) }, + { "MemoryZSwapCurrent", "t", NULL, offsetof(UnitStatusInfo, memory_zswap_current) }, { "MemoryAvailable", "t", NULL, offsetof(UnitStatusInfo, memory_available) }, { "DefaultMemoryMin", "t", NULL, offsetof(UnitStatusInfo, default_memory_min) }, { "DefaultMemoryLow", "t", NULL, offsetof(UnitStatusInfo, default_memory_low) }, |