linux/cgroup: delete double quote in error message

This commit is contained in:
Jörg Thalheim 2025-04-10 09:31:44 +02:00
parent 2455bda91b
commit b3f80283a6

View File

@ -134,7 +134,7 @@ static CgroupStats destroyCgroup(const std::filesystem::path & cgroup, bool retu
}
if (rmdir(cgroup.c_str()) == -1)
throw SysError("deleting cgroup '%s'", cgroup);
throw SysError("deleting cgroup %s", cgroup);
return stats;
}