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)
throw SysError("deleting cgroup '%s'", cgroup);
throw SysError("deleting cgroup %s", cgroup);
return stats;
}