mirror of https://github.com/etcd-io/bbolt.git
tx: use io.SeekStart in WriteTo function
Const os.SEEK_SET is deprecated.pull/43/head
parent
4ff482b44e
commit
4ce1b5e579
2
tx.go
2
tx.go
|
@ -345,7 +345,7 @@ func (tx *Tx) WriteTo(w io.Writer) (n int64, err error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Move past the meta pages in the file.
|
// Move past the meta pages in the file.
|
||||||
if _, err := f.Seek(int64(tx.db.pageSize*2), os.SEEK_SET); err != nil {
|
if _, err := f.Seek(int64(tx.db.pageSize*2), io.SeekStart); err != nil {
|
||||||
return n, fmt.Errorf("seek: %s", err)
|
return n, fmt.Errorf("seek: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue