aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pathfs_frontend/compat_darwin.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/pathfs_frontend/compat_darwin.go b/pathfs_frontend/compat_darwin.go
index 816ba88..3ddb50d 100644
--- a/pathfs_frontend/compat_darwin.go
+++ b/pathfs_frontend/compat_darwin.go
@@ -1,7 +1,5 @@
package pathfs_frontend
-import "syscall"
-
// prealloc - preallocate space without changing the file size. This prevents
// us from running out of space in the middle of an operation.
func prealloc(fd int, off int64, len int64) (err error) {
@@ -10,4 +8,5 @@ func prealloc(fd int, off int64, len int64) (err error) {
// fcntl F_PREALLOCATE is not accessible from Go.
//
// See https://github.com/rfjakob/gocryptfs/issues/18 if you want to help.
+ return nil
}