build, cmd, lib: Minimum supported compiler version is Go 1.5

This commit is contained in:
Jakob Borg
2016-08-15 08:37:32 +02:00
parent 42849af5a8
commit cf5febad47
10 changed files with 10 additions and 10 deletions

View File

@@ -34,7 +34,7 @@ func trackCPUUsage() {
prevTime := ctime.Nanoseconds()
prevUsage := ktime.Nanoseconds() + utime.Nanoseconds() // Always overflows
for _ = range time.NewTicker(time.Second).C {
for range time.NewTicker(time.Second).C {
err := syscall.GetProcessTimes(handle, &ctime, &etime, &ktime, &utime)
if err != nil {
continue