Skip to content

Commit

Permalink
Merge pull request #25 from kleeon/master
Browse files Browse the repository at this point in the history
Fixed issue #24
  • Loading branch information
shakinm authored Sep 27, 2022
2 parents 4c7ea4f + b67ab97 commit cb2bf40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xls/record/mulblank.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func (r *MulBlank) Read(stream []byte) {
cf := helpers.BytesToUint16(r.colFirst[:])
cl := helpers.BytesToUint16(r.colLast[:])
for i := 0; i <= int(cl-cf); i++ {
sPoint := 4 + (i * 6)
sPoint := 4 + (i * 2)
var indexXF [2]byte
copy(indexXF[:], stream[sPoint:sPoint+2])
r.rgixfe = append(r.rgixfe, indexXF)
Expand Down

0 comments on commit cb2bf40

Please sign in to comment.