Fix to compile on Go < 1.6

This commit is contained in:
Gary Burd 2017-01-19 11:23:28 -08:00
parent b0dc45572b
commit 522f286a67
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ import (
)
const (
minCompressionLevel = flate.HuffmanOnly
minCompressionLevel = -2 // flate.HuffmanOnly
maxCompressionLevel = flate.BestCompression
defaultCompressionLevel = 1
)