restic/internal/restorer/truncate_other.go

10 lines
131 B
Go
Raw Normal View History

//go:build !windows
package restorer
import "os"
func truncateSparse(f *os.File, size int64) error {
return f.Truncate(size)
}