cargo fmt

This commit is contained in:
Vinzenz Schroeter 2024-05-12 13:14:33 +02:00
parent 62ca9037b6
commit 0b28b24900
7 changed files with 15 additions and 14 deletions

View file

@ -35,7 +35,7 @@ impl TryFrom<u16> for CompressionCode {
value if value == Lz as u16 => Ok(Lz),
#[cfg(feature = "compression-zs")]
value if value == Zs as u16 => Ok(Zs),
_ => Err(())
_ => Err(()),
}
}
}