restic/internal/restorer/truncate_other.go
2025-11-30 11:53:23 +01:00

9 lines
131 B
Go

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