mirror of
https://github.com/containers/buildah.git
synced 2026-02-05 09:45:38 +01:00
Bumps [github.com/containers/image/v5](https://github.com/containers/image) from 5.2.1 to 5.3.1. - [Release notes](https://github.com/containers/image/releases) - [Commits](https://github.com/containers/image/compare/v5.2.1...v5.3.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
11 lines
172 B
Go
11 lines
172 B
Go
package bbolt
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// fdatasync flushes written data to a file descriptor.
|
|
func fdatasync(db *DB) error {
|
|
return syscall.Fdatasync(int(db.file.Fd()))
|
|
}
|