libcontainer/cgroups: use const for templates

The names of these templates overlapped with some local
variables, which made reading the code somewhat confusing.

Changing them to a const, given that these were not updated anywere.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2020-09-29 13:34:44 +02:00
parent 49d4507c77
commit ab2b5dfa8a
+1 -1
View File
@@ -18,7 +18,7 @@ const (
hugetlbFailcnt = "100\n"
)
var (
const (
usage = "hugetlb.%s.usage_in_bytes"
limit = "hugetlb.%s.limit_in_bytes"
maxUsage = "hugetlb.%s.max_usage_in_bytes"