Skip to content

Commit

Permalink
semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin committed Jun 4, 2024
1 parent 9d887fe commit c005a3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/storage/libmdbx-rs/src/codec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ impl TableObject for ObjectLength {
impl<const LEN: usize> TableObject for [u8; LEN] {
fn decode(data_val: &[u8]) -> Result<Self, Error> {
if data_val.len() != LEN {
return Err(Error::DecodeErrorLenDiff)
return Err(Error::DecodeErrorLenDiff);
}
let mut a = [0; LEN];
a[..].copy_from_slice(data_val);
Expand Down

0 comments on commit c005a3d

Please sign in to comment.