aboutsummaryrefslogtreecommitdiffstats
path: root/packfile
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2015-07-29 16:23:50 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2015-07-29 16:23:50 +0200
commitc336d16298a017486c4164c40f8acb28afe64e84 (patch)
treedf9b916867d4ef5db357b5635b0d18b7eb574497 /packfile
parent31eae7b619d166c366bf5df4991f04ba8cebea0a (diff)
downloadgo-git-c336d16298a017486c4164c40f8acb28afe64e84.tar.gz
vcs: using github.com/klauspost/compress/zlib
Diffstat (limited to 'packfile')
-rw-r--r--packfile/reader.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/packfile/reader.go b/packfile/reader.go
index 1a445aa..73afdb9 100644
--- a/packfile/reader.go
+++ b/packfile/reader.go
@@ -2,10 +2,11 @@ package packfile
import (
"bytes"
- "compress/zlib"
"encoding/binary"
"fmt"
"io"
+
+ "github.com/klauspost/compress/zlib"
)
const MaxObjectsLimit = 1000000