basic/cgroup-util: fix typo in debug message

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2018-03-17 14:32:40 +01:00
parent 1c56d50109
commit c028bed19b
1 changed files with 1 additions and 1 deletions

View File

@ -2483,7 +2483,7 @@ static int cg_unified_update(void) {
return 0;
if (statfs("/sys/fs/cgroup/", &fs) < 0)
return log_debug_errno(errno, "statfs(\"/sys/fs/cgroup/\" failed: %m");
return log_debug_errno(errno, "statfs(\"/sys/fs/cgroup/\") failed: %m");
if (F_TYPE_EQUAL(fs.f_type, CGROUP2_SUPER_MAGIC)) {
log_debug("Found cgroup2 on /sys/fs/cgroup/, full unified hierarchy");