cgfsng: non-functional changes

parent abd51274
...@@ -834,13 +834,11 @@ static bool all_controllers_found(void) ...@@ -834,13 +834,11 @@ static bool all_controllers_found(void)
if (!cgroup_use) if (!cgroup_use)
return true; return true;
for (p = strtok_r(cgroup_use, ",", &saveptr); p; for (; (p = strtok_r(cgroup_use, ",", &saveptr)); cgroup_use = NULL)
p = strtok_r(NULL, ",", &saveptr)) {
if (!controller_found(hlist, p)) { if (!controller_found(hlist, p)) {
CGFSNG_DEBUG("No %s controller mountpoint found\n", p); CGFSNG_DEBUG("No %s controller mountpoint found\n", p);
return false; return false;
} }
}
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment