From 1bb0fd472497dcc36d3e586e6450878ec2d51420 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Fri, 24 Jul 2015 15:45:34 +1000 Subject: [PATCH] Trimmed a bit. --- mount_darwin.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/mount_darwin.go b/mount_darwin.go index 1f9bc55..4980396 100644 --- a/mount_darwin.go +++ b/mount_darwin.go @@ -11,11 +11,6 @@ import ( "syscall" ) -// OS X appears to cap the size of writes to 1 MiB. This constant is also used -// for sizing receive buffers, so make it as small as it can be without -// limiting write sizes. -const maxWrite = 1 << 20 - var errNoAvail = errors.New("no available fuse devices") var errNotLoaded = errors.New("osxfusefs is not loaded")