From ffdd8d79a7834aae0f750bca6965171d6ab73fdc Mon Sep 17 00:00:00 2001 From: James Blair Date: Tue, 11 Apr 2023 10:57:41 +1200 Subject: [PATCH] Fix gofmt for client/pkg/fileutil/preallocate.go. Signed-off-by: James Blair --- client/pkg/fileutil/preallocate.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/pkg/fileutil/preallocate.go b/client/pkg/fileutil/preallocate.go index b06c6ca1c..aadbff713 100644 --- a/client/pkg/fileutil/preallocate.go +++ b/client/pkg/fileutil/preallocate.go @@ -19,8 +19,8 @@ import ( "os" ) -// Preallocate tries to allocate the space for given file. This -// operation is only supported on darwin and linux by a few +// Preallocate tries to allocate the space for given file. This +// operation is only supported on darwin and linux by a few // filesystems (APFS, btrfs, ext4, etc.). // If the operation is unsupported, no error will be returned. // Otherwise, the error encountered will be returned.