diff --git a/.gitignore b/.gitignore index daf913b..59610b5 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,5 @@ _testmain.go *.exe *.test *.prof + +.idea \ No newline at end of file diff --git a/examples/stream-decoder.go b/examples/stream-decoder.go index 1766018..1e27183 100644 --- a/examples/stream-decoder.go +++ b/examples/stream-decoder.go @@ -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) } }