mirror of
https://github.com/containers/skopeo.git
synced 2025-09-27 21:16:23 +00:00
Bump c/common c/image and c/storage to latest
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
This commit is contained in:
8
vendor/github.com/klauspost/compress/zstd/zstd.go
generated
vendored
8
vendor/github.com/klauspost/compress/zstd/zstd.go
generated
vendored
@@ -4,6 +4,7 @@
|
||||
package zstd
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"errors"
|
||||
"log"
|
||||
"math"
|
||||
@@ -146,3 +147,10 @@ func load64(b []byte, i int) uint64 {
|
||||
return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
|
||||
uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56
|
||||
}
|
||||
|
||||
type byter interface {
|
||||
Bytes() []byte
|
||||
Len() int
|
||||
}
|
||||
|
||||
var _ byter = &bytes.Buffer{}
|
||||
|
Reference in New Issue
Block a user