diff --git a/src/write.rs b/src/write.rs index 8278a2ea..7ae82c85 100644 --- a/src/write.rs +++ b/src/write.rs @@ -1275,9 +1275,9 @@ impl GenericZipWriter { } #[cfg(feature = "deflate64")] CompressionMethod::Deflate64 => { - return Err(ZipError::UnsupportedArchive( + Err(ZipError::UnsupportedArchive( "Compressing Deflate64 is not supported", - )); + )) } #[cfg(feature = "bzip2")] CompressionMethod::Bzip2 => { diff --git a/tests/deflate64.rs b/tests/deflate64.rs index b0cd95a9..9eb9f4b6 100644 --- a/tests/deflate64.rs +++ b/tests/deflate64.rs @@ -1,7 +1,7 @@ #![cfg(feature = "deflate64")] use std::io::{self, Read}; -use zip::ZipArchive; +use zip_next::ZipArchive; #[test] fn decompress_deflate64() {