aboutsummaryrefslogtreecommitdiff
path: root/go
diff options
context:
space:
mode:
authorAlexandr Razumov <alexandr.razumov@ostrovok.ru>2016-04-01 22:18:58 +0300
committerAlexandr Razumov <alexandr.razumov@ostrovok.ru>2016-04-01 22:18:58 +0300
commitca2a6cc36bf91e1072751c4d8567829f47f3855b (patch)
treea7d0a6e54bcba3d2eefe34cf0928d4a0825062b6 /go
parent67cd8959bcc81cbe32a6c1998e8facb36436bb88 (diff)
downloadseaweedfs-ca2a6cc36bf91e1072751c4d8567829f47f3855b.tar.xz
seaweedfs-ca2a6cc36bf91e1072751c4d8567829f47f3855b.zip
use klauspost/crc32 instead of hash/crc32
Diffstat (limited to 'go')
-rw-r--r--go/storage/crc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/storage/crc.go b/go/storage/crc.go
index b10354d64..21e384854 100644
--- a/go/storage/crc.go
+++ b/go/storage/crc.go
@@ -2,7 +2,7 @@ package storage
import (
"fmt"
- "hash/crc32"
+ "github.com/klauspost/crc32"
"github.com/chrislusf/seaweedfs/go/util"
)