Skip to content

Commit

Permalink
Fix the vid
Browse files Browse the repository at this point in the history
  • Loading branch information
ImJeremyHe committed Mar 15, 2024
1 parent 43d1a44 commit 0ef733f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbitrator/vid-helper/src/bytes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ impl<const N: usize> From<[u8; N]> for Bytes {

impl<const N: usize> From<&[u8; N]> for Bytes {
fn from(bytes: &[u8; N]) -> Self {
Self(bytes.into())
Self((*bytes).into())
}
}

Expand Down

0 comments on commit 0ef733f

Please sign in to comment.