Merge pull request #49 from lavafroth/fix-accumulator

This commit is contained in:
xvzc 2023-09-03 11:49:39 +09:00 committed by GitHub
commit c7774f6d99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ func (conn *Conn) WriteChunks(c [][]byte) (n int, err error) {
return 0, nil return 0, nil
} }
b += total total += b
} }
return total, nil return total, nil