summaryrefslogtreecommitdiff
path: root/src/core/unit.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-04-16 08:10:33 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-04-16 08:12:02 -0400
commit0f908397544811f60f33aab4ab277041c21aa089 (patch)
tree37d631d4243a385d1f976d116fb3ee3f2a5c2227 /src/core/unit.c
parent38b9855bfa28d1a7c8e0a629187147d79ffdaf6b (diff)
core: fix spurious warning about cpuacct-usage-base deserialization
The key was parsed properly, but the warning was still generated.
Diffstat (limited to 'src/core/unit.c')
-rw-r--r--src/core/unit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/unit.c b/src/core/unit.c
index 3aa1bf25f7..494dee4156 100644
--- a/src/core/unit.c
+++ b/src/core/unit.c
@@ -2776,6 +2776,7 @@ int unit_deserialize(Unit *u, FILE *f, FDSet *fds) {
if (r < 0)
log_debug("Failed to parse CPU usage %s", v);
+ continue;
} else if (streq(l, "cgroup")) {
char *s;