Skip to content

Commit

Permalink
Appease staticcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
turt2live committed Aug 20, 2023
1 parent 063a7f1 commit 0c7633f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sfstreams.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ func (a *asyncMultiWriter) Write(p []byte) (int, error) {
ch := make(chan *writeResponse, len(a.writers))
wg := new(sync.WaitGroup)
c := 0
for i, _ := range a.writers {
for i := range a.writers {
if a.skipFlags[i] {
continue
}
Expand Down

0 comments on commit 0c7633f

Please sign in to comment.