src/pxar/decoder.rs: correctly call callback()

This commit is contained in:
Dietmar Maurer
2019-03-15 08:02:04 +01:00
parent 5defa71bf9
commit 02c93163cf
2 changed files with 6 additions and 5 deletions

View File

@ -35,7 +35,7 @@ impl PxarDecodeWriter {
if let Err(err) = decoder.restore(&base, & |path| {
if verbose {
println!("RESTORE: {:?}", path);
println!("{:?}", path);
}
Ok(())
}) {