summaryrefslogtreecommitdiff
path: root/src/systemctl/systemctl-list-units.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2023-02-23 11:37:48 +0100
committerGitHub <noreply@github.com>2023-02-23 11:37:48 +0100
commita34180a22f677f6cb96be76ab1f485b36d870e09 (patch)
tree8ee01484e1498fba26de0da91e8b77678dec3c2c /src/systemctl/systemctl-list-units.c
parentf1e1614e10f866daa6e62366ba06fa0b10739174 (diff)
parentde2c4707c15c1404b42afd83a539e1b48179010b (diff)
downloadsystemd-a34180a22f677f6cb96be76ab1f485b36d870e09.tar.gz
Merge pull request #26556 from keszybz/list-timers-optimize-left
Do not say " left" on every timer in LEFT column
Diffstat (limited to 'src/systemctl/systemctl-list-units.c')
-rw-r--r--src/systemctl/systemctl-list-units.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl/systemctl-list-units.c b/src/systemctl/systemctl-list-units.c
index 8e53730078..193535e118 100644
--- a/src/systemctl/systemctl-list-units.c
+++ b/src/systemctl/systemctl-list-units.c
@@ -628,7 +628,7 @@ static int output_timers_list(struct timer_info *timer_infos, size_t n) {
r = table_add_many(table,
TABLE_TIMESTAMP, t->next_elapse,
- TABLE_TIMESTAMP_RELATIVE, t->next_elapse,
+ TABLE_TIMESTAMP_LEFT, t->next_elapse,
TABLE_TIMESTAMP, t->last_trigger,
TABLE_TIMESTAMP_RELATIVE, t->last_trigger,
TABLE_STRING, unit);