lotus/storage/sealer/fsutil/dealloc_other.go
2022-06-14 20:03:38 +02:00

19 lines
273 B
Go

//go:build !linux
// +build !linux
package fsutil
import (
"os"
logging "github.com/ipfs/go-log/v2"
)
var log = logging.Logger("fsutil")
func Deallocate(file *os.File, offset int64, length int64) error {
log.Warnf("deallocating space not supported")
return nil
}