mirror of
https://github.com/rclone/rclone.git
synced 2025-12-31 23:53:18 +00:00
Use proper import path go.etcd.io/bbolt
Signed-off-by: Robert-André Mauchin <zebob.m@gmail.com>
This commit is contained in:
committed by
Nick Craig-Wood
parent
4d8d1e287b
commit
e2e400e63c
10
vendor/go.etcd.io/bbolt/bolt_linux.go
generated
vendored
Normal file
10
vendor/go.etcd.io/bbolt/bolt_linux.go
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
package bbolt
|
||||
|
||||
import (
|
||||
"syscall"
|
||||
)
|
||||
|
||||
// fdatasync flushes written data to a file descriptor.
|
||||
func fdatasync(db *DB) error {
|
||||
return syscall.Fdatasync(int(db.file.Fd()))
|
||||
}
|
||||
Reference in New Issue
Block a user