Skip to content

Commit

Permalink
Merge pull request lukeroth#66 from sergevoloshyn/master
Browse files Browse the repository at this point in the history
Fixed gdal v3 incompatible method args type
  • Loading branch information
martende authored Apr 29, 2021
2 parents 4b7812b + bcc97c0 commit 0ed96ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ogr.go
Original file line number Diff line number Diff line change
Expand Up @@ -1275,7 +1275,7 @@ func (feature Feature) SetFieldBinary(index int, value []uint8) {
feature.cval,
C.int(index),
C.int(len(value)),
(*C.GByte)(unsafe.Pointer(&value[0])),
unsafe.Pointer(&value[0]),
)
}

Expand Down

0 comments on commit 0ed96ec

Please sign in to comment.