From bf21be105004aa2a2e8b0e3af8366d60ada7a928 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 12 Jul 2019 08:49:53 +0200 Subject: [PATCH] util-lib: fix comment As suggested by @ralt. Fixes: #12896 --- src/basic/cgroup-util.c | 5 ++--- 1 file 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); }