Skip to content

Commit 3f3cc6f

Browse files
authored
Merge pull request #12991 from Mic92/cgroup
linux/cgroup: delete double quote in error message
2 parents 26cb166 + b3f8028 commit 3f3cc6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libutil/linux/cgroup.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ static CgroupStats destroyCgroup(const std::filesystem::path & cgroup, bool retu
134134
}
135135

136136
if (rmdir(cgroup.c_str()) == -1)
137-
throw SysError("deleting cgroup '%s'", cgroup);
137+
throw SysError("deleting cgroup %s", cgroup);
138138

139139
return stats;
140140
}

0 commit comments

Comments
 (0)