| commit | a2ae5992c52d77d5f52cea5b99df90fdfebcb48f | [log] [tgz] |
|---|---|---|
| author | Abhay Kumar <abhay.kumar@radisys.com> | Mon Nov 10 14:02:24 2025 +0000 |
| committer | Abhay Kumar <abhay.kumar@radisys.com> | Fri Dec 05 07:09:17 2025 +0000 |
| tree | 5073cc457c66ef663e296e7dacd932674db1ece2 | |
| parent | 26065cff097de3ced0f09bff0bf47fa4f681a2c3 [diff] [blame] |
[VOL-5486] Fix deprecated versions Change-Id: I3e03ea246020547ae75fa92ce8cf5cbba7e8f3bb 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.