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 *.exe
*.test *.test
*.prof *.prof
.idea

View File

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