diff options
author | Daniel Mack <github@zonque.org> | 2015-06-16 11:03:27 +0200 |
---|---|---|
committer | Daniel Mack <github@zonque.org> | 2015-06-16 11:03:27 +0200 |
commit | 5630aab1a81bcb8146298e8367d2a28d74f0b8f3 (patch) | |
tree | 00051f1c45e118be233922e8ca0d8dfbd75fda4f /src/systemctl | |
parent | 1a770c60ee6a15ec5bd1f8db7cc0ffaebf4bcedc (diff) | |
parent | 5cb14b3742038b28551b161635a0cba3559404b2 (diff) |
Merge pull request #218 from poettering/dual-timestamp-null
everywhere: actually make use of DUAL_TIMESTAMP_NULL macro
Diffstat (limited to 'src/systemctl')
-rw-r--r-- | src/systemctl/systemctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 40bea87dfa..23fc946fbf 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -1183,7 +1183,7 @@ static int list_timers(sd_bus *bus, char **args) { for (u = unit_infos; u < unit_infos + n; u++) { _cleanup_strv_free_ char **triggered = NULL; - dual_timestamp next = {}; + dual_timestamp next = DUAL_TIMESTAMP_NULL; usec_t m, last = 0; if (!endswith(u->id, ".timer")) |