Skip to content

Commit

Permalink
MLAR: use the new API
Browse files Browse the repository at this point in the history
  • Loading branch information
commial committed Jan 12, 2024
1 parent 414422b commit be5d279
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mlar/src/main.rs
Expand Up @@ -12,7 +12,7 @@ use mla::helpers::linear_extract;
use mla::layers::compress::CompressionLayerReader;
use mla::layers::encrypt::EncryptionLayerReader;
use mla::layers::raw::RawLayerReader;
use mla::layers::traits::LayerReader;
use mla::layers::traits::{InnerReaderTrait, LayerReader};
use mla::{
ArchiveFailSafeReader, ArchiveFile, ArchiveFooter, ArchiveHeader, ArchiveReader, ArchiveWriter,
Layers,
Expand Down Expand Up @@ -921,7 +921,7 @@ impl ArchiveInfoReader {
mut config: ArchiveReaderConfig,
) -> Result<Self, MlarError>
where
R: 'a + Read + Seek,
R: 'a + InnerReaderTrait,
{
// Make sure we read the archive header from the start
src.rewind()?;
Expand Down

0 comments on commit be5d279

Please sign in to comment.