gofmt all files

This commit is contained in:
Abin Shahab 2014-10-21 05:23:23 +00:00
parent 48129c03d1
commit 7133ab0f7d
2 changed files with 5 additions and 5 deletions

View File

@ -27,7 +27,7 @@ func TestGetContainerHintsFromFile(t *testing.T) {
if len(cHints.AllHosts[0].Mounts) == 0 {
t.Errorf("Cannot find any mounts")
}
for i, mountDir := range cHints.AllHosts[0].Mounts {
if correctMountDirs[i] != mountDir.HostDir {
t.Errorf("Cannot find mount %s in %s", mountDir.HostDir, cHints)

View File

@ -12,9 +12,9 @@ import "C"
import (
"bufio"
"fmt"
"path"
"os"
"os/exec"
"path"
"regexp"
"strconv"
"strings"
@ -26,6 +26,7 @@ import (
)
var partitionRegex = regexp.MustCompile("sd[a-z]+\\d")
type partition struct {
mountpoint string
major uint
@ -98,7 +99,6 @@ func getDiskStatsMap(diskStatsFile string) (map[string]DiskStats, error) {
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
line := scanner.Text()
words := strings.Fields(line)
@ -109,13 +109,13 @@ func getDiskStatsMap(diskStatsFile string) (map[string]DiskStats, error) {
deviceName := path.Join("/dev", words[2])
wordLength := len(words)
offset := 3
var stats = make([]uint64, wordLength - offset)
var stats = make([]uint64, wordLength-offset)
if len(stats) < 11 {
return nil, fmt.Errorf("could not parse all 11 columns of /proc/diskstats")
}
var error error
for i := offset; i < wordLength; i++ {
stats[i - offset], error = strconv.ParseUint(words[i], 10, 64)
stats[i-offset], error = strconv.ParseUint(words[i], 10, 64)
if error != nil {
return nil, error
}