aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-01-09 13:04:48 +0100
committerJakob Unterwurzacher2016-01-09 13:04:48 +0100
commit236970adee4e4b4123f10e895ddc0b4e4dc8ecaf (patch)
treecf15f4b1416065f39524aa5b265848e9ead1eb31
parentf93729f20da4a7416ec387d9d10a8776dba67c29 (diff)
OSX: Fix build failure caused by syntax errors
-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
}