Bug fix
This commit is contained in:
parent
de0cbc039e
commit
28f045e17e
1 changed files with 2 additions and 1 deletions
|
@ -130,10 +130,11 @@ impl FileOptions {
|
||||||
|
|
||||||
#[cfg(fuzzing)]
|
#[cfg(fuzzing)]
|
||||||
/// Changes the compression method to the default if it would otherwise be no compression.
|
/// 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 {
|
if self.compression_method == CompressionMethod::Stored {
|
||||||
self.compression_method = CompressionMethod::Deflated;
|
self.compression_method = CompressionMethod::Deflated;
|
||||||
}
|
}
|
||||||
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Set the compression level for the new file
|
/// Set the compression level for the new file
|
||||||
|
|
Loading…
Add table
Reference in a new issue