fix compilation problem

This commit is contained in:
Chris Lu 2020-05-18 10:53:31 -07:00
parent ac48c899e8
commit 11b33c0760

View file

@ -12,7 +12,7 @@ type OffsetHigher struct {
const (
OffsetSize = 4
MaxPossibleVolumeSize = 4 * 1024 * 1024 * 1024 * 8 // 32GB
MaxPossibleVolumeSize uint64 = 4 * 1024 * 1024 * 1024 * 8 // 32GB
)
func OffsetToBytes(bytes []byte, offset Offset) {