diff options
author | Jakob Unterwurzacher | 2018-04-08 20:24:29 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-04-08 20:26:25 +0200 |
commit | bcc8378a2c07476a43c1fe316b79590177ded3d3 (patch) | |
tree | 62ec5920109b92e3421884b9f3677ea95a83b56b /mount.go | |
parent | cab0cda449c831d1d5bb9b75452428c186079799 (diff) |
Fix the easy golint warnings
Reported by https://goreportcard.com/report/github.com/rfjakob/gocryptfs
Diffstat (limited to 'mount.go')
-rw-r--r-- | mount.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -284,7 +284,7 @@ func initGoFuse(fs pathfs.FileSystem, args *argContainer) *fuse.Server { // sync.Pool buffer pools are sized acc. to the default. Users may set // the kernel constant higher, and Synology NAS kernels are known to // have it >128kiB. We cannot handle more than 128kiB, so we tell - // the kernel to limit the size explicitely. + // the kernel to limit the size explicitly. MaxWrite: fuse.MAX_KERNEL_WRITE, Options: []string{fmt.Sprintf("max_read=%d", fuse.MAX_KERNEL_WRITE)}, } |