mirror of
https://github.com/NixOS/nix.git
synced 2025-04-15 13:47:34 +00:00
Merge pull request #12991 from Mic92/cgroup
linux/cgroup: delete double quote in error message
This commit is contained in:
commit
3f3cc6f438
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user