Skip to content

Commit

Permalink
gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ncw committed Sep 17, 2015
1 parent 3234c28 commit e391311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/accounting.go
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ func (file *Account) String() string {
name := []rune(file.name)
if len(name) > 45 {
where := len(name) - 42
name = append([]rune{'.','.','.'}, name[where:]...)
name = append([]rune{'.', '.', '.'}, name[where:]...)
}
if b <= 0 {
return fmt.Sprintf("%45s: avg:%7.1f, cur: %6.1f kByte/s. ETA: %s", string(name), avg/1024, cur/1024, etas)
Expand Down

0 comments on commit e391311

Please sign in to comment.