1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

Merge pull request #12991 from Mic92/cgroup

linux/cgroup: delete double quote in error message
This commit is contained in:
Eelco Dolstra 2025-04-10 10:11:24 +02:00 committed by GitHub
commit 3f3cc6f438
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;
} }