Skip to content

Commit

Permalink
gnrc: Fix build failure
Browse files Browse the repository at this point in the history
Merges: #61
  • Loading branch information
chrysn committed Oct 20, 2023
2 parents 7b8ec82 + 220b7cd commit 7f8fe37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gnrc/ipv6.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ impl From<embedded_nal::Ipv6Addr> for Address {
#[cfg(feature = "with_embedded_nal")]
impl From<Address> for embedded_nal::Ipv6Addr {
fn from(addr: Address) -> Self {
Self::from(self.raw())
Self::from(*addr.raw())
}
}

Expand Down

0 comments on commit 7f8fe37

Please sign in to comment.