Skip to content

Commit c755602

Browse files
Merge pull request #41 from estesp/update-travis-go
Update Go versions for travis
2 parents bf7d89f + 0a357bb commit c755602

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: go
22
go:
3-
- 1.8.x
3+
- 1.10.x
4+
- tip
45

56
install:
67
- mkdir -p $GOPATH/src/github.com/prometheus $GOPATH/src/github.com/opencontainers

devices.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ func (d *devicesController) Update(path string, resources *specs.LinuxResources)
7474
}
7575

7676
func deviceString(device specs.LinuxDeviceCgroup) string {
77-
return fmt.Sprintf("%c %s:%s %s",
78-
&device.Type,
77+
return fmt.Sprintf("%s %s:%s %s",
78+
device.Type,
7979
deviceNumber(device.Major),
8080
deviceNumber(device.Minor),
81-
&device.Access,
81+
device.Access,
8282
)
8383
}
8484

0 commit comments

Comments
 (0)