1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-01 08:15:43 +08:00

Run 'gofmt -s -w' on these files

This commit is contained in:
rht
2015-05-19 00:42:21 +07:00
parent 88be96bc8c
commit ac7edddb94
23 changed files with 141 additions and 141 deletions

View File

@ -95,7 +95,7 @@ func (dm *DagModifier) WriteAt(b []byte, offset int64) (int, error) {
type zeroReader struct{}
func (zr zeroReader) Read(b []byte) (int, error) {
for i, _ := range b {
for i := range b {
b[i] = 0
}
return len(b), nil