mirror of
https://github.com/containers/podman.git
synced 2025-12-06 13:56:22 +08:00
Bumps [go.etcd.io/bbolt](https://github.com/etcd-io/bbolt) from 1.3.6 to 1.3.7. - [Release notes](https://github.com/etcd-io/bbolt/releases) - [Commits](https://github.com/etcd-io/bbolt/compare/v1.3.6...v1.3.7) --- updated-dependencies: - dependency-name: go.etcd.io/bbolt dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
10 lines
222 B
Go
10 lines
222 B
Go
//go:build !windows && !plan9 && !linux && !openbsd
|
|
// +build !windows,!plan9,!linux,!openbsd
|
|
|
|
package bbolt
|
|
|
|
// fdatasync flushes written data to a file descriptor.
|
|
func fdatasync(db *DB) error {
|
|
return db.file.Sync()
|
|
}
|