lib/encoding/zstd: go fmt

This commit is contained in:
Aliaksandr Valialkin 2019-07-25 01:37:16 +03:00
parent 6c4ca89d75
commit b339890dca

View file

@ -69,7 +69,7 @@ type compressFn func(dst, src []byte, compressionLevel int) ([]byte, error)
func pureCompress(dst, src []byte, _ int) ([]byte, error) {
w, err := pure.NewWriter(nil,
pure.WithEncoderCRC(false), // Disable CRC for performance reasons.
pure.WithEncoderCRC(false), // Disable CRC for performance reasons.
pure.WithEncoderLevel(pure.SpeedBestCompression))
if err != nil {
return nil, err