Skip to content

Commit 288f5ef

Browse files
committed
more lint fixes
1 parent 53fdfb2 commit 288f5ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/drivers/kic/oci/cgroups_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func IsCgroup2UnifiedMode() (bool, error) {
4444
func findCgroupMountpoints() (map[string]string, error) {
4545
cgMounts, err := cgroups.GetCgroupMounts(false)
4646
if err != nil {
47-
return nil, fmt.Errorf("Failed to parse cgroup information: %v", err)
47+
return nil, fmt.Errorf("failed to parse cgroup information: %v", err)
4848
}
4949
mps := make(map[string]string)
5050
for _, m := range cgMounts {

0 commit comments

Comments
 (0)