diff --git a/src/gnrc/ipv6.rs b/src/gnrc/ipv6.rs index b6a42e36..d8d401ae 100644 --- a/src/gnrc/ipv6.rs +++ b/src/gnrc/ipv6.rs @@ -180,7 +180,7 @@ impl From for Address { #[cfg(feature = "with_embedded_nal")] impl From
for embedded_nal::Ipv6Addr { fn from(addr: Address) -> Self { - Self::from(self.raw()) + Self::from(*addr.raw()) } }