From b68e930629edce2b2d166f43be1c5209d7a2d20c Mon Sep 17 00:00:00 2001 From: Ibrahim Jarif Date: Thu, 26 Dec 2019 23:04:39 +0530 Subject: [PATCH] Fix golint line length error --- value.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/value.go b/value.go index b1ac371cc..15f127356 100644 --- a/value.go +++ b/value.go @@ -856,7 +856,8 @@ func (lf *logFile) open(path string, flags uint32) error { return errFile(err, lf.path, "Unable to run file.Stat") } sz := fi.Size() - y.AssertTruef(sz <= math.MaxUint32, "file size: %d greater than %d", uint32(sz), uint32(math.MaxUint32)) + y.AssertTruef(sz <= math.MaxUint32, "file size: %d greater than %d", + uint32(sz), uint32(math.MaxUint32)) lf.size = uint32(sz) if sz < vlogHeaderSize { // Every vlog file should have at least vlogHeaderSize. If it is less than vlogHeaderSize