summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorAlexander Kuleshov <kuleshovmail@gmail.com>2016-02-13 23:55:15 +0600
committerAlexander Kuleshov <kuleshovmail@gmail.com>2016-02-13 23:55:15 +0600
commit36b693a6a901dd321a7c4f8f82ed44072d04497e (patch)
tree3bffac14b2035e310c5ac839d4ad0ae2d1f62ac4 /src/core
parent06e948901a6f70b4d10c90d05a174da0663d1aba (diff)
service: remove unnecessary check
We call dual_timestamp_serialize() only if the s->watchdog_timestamp is set. But the dual_timestamp_serialize() already checks a given dual timestamp by the call of the dual_timestamp_is_set(). So we can remove this check safely.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/service.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/service.c b/src/core/service.c
index ed24417859..1f6d821db3 100644
--- a/src/core/service.c
+++ b/src/core/service.c
@@ -2134,8 +2134,7 @@ static int service_serialize(Unit *u, FILE *f, FDSet *fds) {
}
}
- if (dual_timestamp_is_set(&s->watchdog_timestamp))
- dual_timestamp_serialize(f, "watchdog-timestamp", &s->watchdog_timestamp);
+ dual_timestamp_serialize(f, "watchdog-timestamp", &s->watchdog_timestamp);
unit_serialize_item(u, f, "forbid-restart", yes_no(s->forbid_restart));