aboutsummaryrefslogtreecommitdiff
path: root/go/weed/volume.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2014-04-17 00:16:44 -0700
committerChris Lu <chris.lu@gmail.com>2014-04-17 00:16:44 -0700
commit3b5035c468626af9ba052afaaa16a8cd3598423e (patch)
tree5949edc5a243888d79fea90272e1a95270b4a7ab /go/weed/volume.go
parent51939efeac635d0ba8b683cae6176aa60845b5f7 (diff)
downloadseaweedfs-3b5035c468626af9ba052afaaa16a8cd3598423e.tar.xz
seaweedfs-3b5035c468626af9ba052afaaa16a8cd3598423e.zip
1. v0.54
2. go vet found many printing format errors
Diffstat (limited to 'go/weed/volume.go')
-rw-r--r--go/weed/volume.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/weed/volume.go b/go/weed/volume.go
index 3c6cf05a5..a43a396b2 100644
--- a/go/weed/volume.go
+++ b/go/weed/volume.go
@@ -53,7 +53,7 @@ func runVolume(cmd *Command, args []string) bool {
if max, e := strconv.Atoi(maxString); e == nil {
maxCounts = append(maxCounts, max)
} else {
- glog.Fatalf("The max specified in -max not a valid number %s", max)
+ glog.Fatalf("The max specified in -max not a valid number %s", maxString)
}
}
if len(folders) != len(maxCounts) {