1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 04:21:16 +02:00

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) if (rmdir(cgroup.c_str()) == -1)
throw SysError("deleting cgroup '%s'", cgroup); throw SysError("deleting cgroup %s", cgroup);
return stats; return stats;
} }