Skip to content

Commit

Permalink
fix vet error
Browse files Browse the repository at this point in the history
  • Loading branch information
willscott committed Aug 24, 2017
1 parent 9b1d407 commit a6ffbc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/talekutil/main.go
Expand Up @@ -39,7 +39,7 @@ func main() {
pflag.Parse()

if *outputCommon {
common := common.Config{
com := common.Config{
NumBuckets: 1024,
BucketDepth: 4,
DataSize: 1024,
Expand All @@ -48,7 +48,7 @@ func main() {
ReadInterval: time.Second,
MaxLoadFactor: 0.95,
}
commonDat, err := json.MarshalIndent(common, "", " ")
commonDat, err := json.MarshalIndent(com, "", " ")
if err != nil {
fmt.Printf("Could not serialize common config: %v\n", err)
return
Expand Down

0 comments on commit a6ffbc6

Please sign in to comment.