fix example error (#53)

master
timchenxiaoyu 2017-06-07 04:26:01 +08:00 committed by Klaus Post
parent dde6ad55c5
commit d4658f22be
2 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@ -22,3 +22,5 @@ _testmain.go
*.exe
*.test
*.prof
.idea

View File

@ -39,7 +39,6 @@ import (
"fmt"
"io"
"os"
"path/filepath"
"github.com/klauspost/reedsolomon"
)
@ -88,10 +87,9 @@ func main() {
out := make([]io.Writer, len(shards))
for i := range out {
if shards[i] == nil {
dir, _ := filepath.Split(fname)
outfn := fmt.Sprintf("%s.%d", fname, i)
fmt.Println("Creating", outfn)
out[i], err = os.Create(filepath.Join(dir, outfn))
out[i], err = os.Create(outfn)
checkErr(err)
}
}