diff options
author | Jakob Unterwurzacher | 2016-01-09 13:04:48 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-01-09 13:04:48 +0100 |
commit | 236970adee4e4b4123f10e895ddc0b4e4dc8ecaf (patch) | |
tree | cf15f4b1416065f39524aa5b265848e9ead1eb31 /pathfs_frontend/compat_darwin.go | |
parent | f93729f20da4a7416ec387d9d10a8776dba67c29 (diff) |
OSX: Fix build failure caused by syntax errors
Diffstat (limited to 'pathfs_frontend/compat_darwin.go')
-rw-r--r-- | pathfs_frontend/compat_darwin.go | 3 |
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 } |