diff options
author | Lennart Poettering <lennart@poettering.net> | 2019-07-12 08:49:53 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-07-12 09:37:49 +0200 |
commit | bf21be105004aa2a2e8b0e3af8366d60ada7a928 (patch) | |
tree | ede9fea5b9b822e63ff5f53ae933f8f351b2e3e9 /src/basic/cgroup-util.c | |
parent | Merge pull request #13022 from keszybz/coverity-cleanups (diff) | |
download | systemd-bf21be105004aa2a2e8b0e3af8366d60ada7a928.tar.xz systemd-bf21be105004aa2a2e8b0e3af8366d60ada7a928.zip |
util-lib: fix comment
As suggested by @ralt.
Fixes: #12896
Diffstat (limited to '')
-rw-r--r-- | src/basic/cgroup-util.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/basic/cgroup-util.c b/src/basic/cgroup-util.c index 7d610475a8..da37b52dbe 100644 --- a/src/basic/cgroup-util.c +++ b/src/basic/cgroup-util.c @@ -1676,9 +1676,8 @@ int cg_path_get_user_unit(const char *path, char **ret) { if (!t) return -ENXIO; - /* And from here on it looks pretty much the same as for a - * system unit, hence let's use the same parser from here - * on. */ + /* And from here on it looks pretty much the same as for a system unit, hence let's use the same + * parser. */ return cg_path_get_unit(t, ret); } |