| commit | e65b279775a3e9aaeeb07665ef0c8cea8ebe4ee0 | [log] [tgz] |
|---|---|---|
| author | Abhay Kumar <abhay.kumar@radisys.com> | Mon Nov 10 13:39:07 2025 +0000 |
| committer | Abhay Kumar <abhay.kumar@radisys.com> | Fri Dec 05 07:10:17 2025 +0000 |
| tree | 20c17f5f5ddce7f2017881d6a73aaf9693089234 | |
| parent | e30dfa9e0a445d391118c3cbf0a39088a5f34f9f [diff] [blame] |
[VOL-5486] Fix deprecated versions Change-Id: Ic398322948171d8a1c5b4e866602805ec0ea396f Signed-off-by: Abhay Kumar <abhay.kumar@radisys.com>
diff --git a/vendor/github.com/klauspost/compress/zstd/bitwriter.go b/vendor/github.com/klauspost/compress/zstd/bitwriter.go index 78b3c61..1952f17 100644 --- a/vendor/github.com/klauspost/compress/zstd/bitwriter.go +++ b/vendor/github.com/klauspost/compress/zstd/bitwriter.go
@@ -97,12 +97,11 @@ // close will write the alignment bit and write the final byte(s) // to the output. -func (b *bitWriter) close() error { +func (b *bitWriter) close() { // End mark b.addBits16Clean(1, 1) // flush until next byte. b.flushAlign() - return nil } // reset and continue writing by appending to out.