Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
xitongsys committed Nov 10, 2020
1 parent 39f1053 commit b09c49d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion encoding/binaryread.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func BinaryReadINT32(r io.Reader, nums []interface{}) error {

func BinaryReadINT64(r io.Reader, nums []interface{}) error {
buf := make([]byte, len(nums)*8)
n, err := io.ReadFull(r, ,buf)
n, err := io.ReadFull(r, buf)
if err != nil {
return err
}
Expand Down

0 comments on commit b09c49d

Please sign in to comment.