From ff4bab4c0750bdc5e53c3a0d1a94609688c2eb44 Mon Sep 17 00:00:00 2001 From: Audrius Butkevicius Date: Sun, 10 Jan 2016 17:25:11 +0000 Subject: [PATCH] Silence the linter --- lib/protocol/protocol.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/protocol/protocol.go b/lib/protocol/protocol.go index c859636e8..73e0756b2 100644 --- a/lib/protocol/protocol.go +++ b/lib/protocol/protocol.go @@ -68,9 +68,9 @@ const ( FlagFolderIgnoreDelete = 1 << 2 // The folder hash algorithm IDs, to be put in the flags field by shifting - // left FolderHashShiftBits - FolderHashSHA256 = 0 - // ... 1 through 15 currently reserved + // left FolderHashShiftBits. 1 through 15 currently reserved. + + FolderHashSHA256 = 0 FolderHashMask = 15 FolderHashShiftBits = 3 )