summaryrefslogtreecommitdiff
path: root/vendor/github.com/klauspost
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-03-25 14:26:05 +0100
committerGitHub <noreply@github.com>2020-03-25 14:26:05 +0100
commit852dd7fbde92c48b1887bfefa8056aa51015e120 (patch)
treec9be6ffc231b31ca9aa1308310b8266eaf470046 /vendor/github.com/klauspost
parent69b011d3ac39b985cdbd2bacfa1eaeba166bf224 (diff)
parent2a3fe3566671cb292a70339fee089d999ba29400 (diff)
downloadpodman-852dd7fbde92c48b1887bfefa8056aa51015e120.tar.gz
podman-852dd7fbde92c48b1887bfefa8056aa51015e120.tar.bz2
podman-852dd7fbde92c48b1887bfefa8056aa51015e120.zip
Merge pull request #5607 from containers/dependabot/go_modules/github.com/containers/storage-1.16.6
Bump github.com/containers/storage from 1.16.5 to 1.16.6
Diffstat (limited to 'vendor/github.com/klauspost')
-rw-r--r--vendor/github.com/klauspost/pgzip/gzip.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/klauspost/pgzip/gzip.go b/vendor/github.com/klauspost/pgzip/gzip.go
index bb2e33941..cb3dc0896 100644
--- a/vendor/github.com/klauspost/pgzip/gzip.go
+++ b/vendor/github.com/klauspost/pgzip/gzip.go
@@ -85,7 +85,7 @@ func (z *Writer) SetConcurrency(blockSize, blocks int) error {
z.blockSize = blockSize
z.results = make(chan result, blocks)
z.blocks = blocks
- z.dstPool = sync.Pool{New: func() interface{} { return make([]byte, 0, blockSize+(blockSize)>>4) }}
+ z.dstPool.New = func() interface{} { return make([]byte, 0, blockSize+(blockSize)>>4) }
return nil
}