From 28f045e17e98830c870e53974e6cf6501a217bab Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 1 May 2023 16:50:36 -0700 Subject: [PATCH] Bug fix --- src/write.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index 3801e892..0281c94d 100644 --- a/src/write.rs +++ b/src/write.rs @@ -130,10 +130,11 @@ impl FileOptions { #[cfg(fuzzing)] /// Changes the compression method to the default if it would otherwise be no compression. - pub fn force_compression(mut self) { + pub fn force_compression(mut self) -> FileOptions { if self.compression_method == CompressionMethod::Stored { self.compression_method = CompressionMethod::Deflated; } + self } /// Set the compression level for the new file