mirror of
https://github.com/restic/restic.git
synced 2025-12-08 06:09:56 +00:00
9 lines
131 B
Go
9 lines
131 B
Go
//go:build !windows
|
|
|
|
package restorer
|
|
|
|
import "os"
|
|
|
|
func truncateSparse(f *os.File, size int64) error {
|
|
return f.Truncate(size)
|
|
}
|