Просмотр исходного кода

fix import in the writer so it is not mixing v2 and v3

Dj Gilcrease 6 лет назад
Родитель
Сommit
c470295428
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      writer.go

+ 2 - 1
writer.go

@@ -3,9 +3,10 @@ package lz4
 import (
 import (
 	"encoding/binary"
 	"encoding/binary"
 	"fmt"
 	"fmt"
-	"github.com/pierrec/lz4/internal/xxh32"
 	"io"
 	"io"
 	"runtime"
 	"runtime"
+
+	"github.com/pierrec/lz4/v3/internal/xxh32"
 )
 )
 
 
 // zResult contains the results of compressing a block.
 // zResult contains the results of compressing a block.