Skip to content
Snippets Groups Projects
Commit d94ba6c7 authored by Martine Lenders's avatar Martine Lenders Committed by Martine Lenders
Browse files

gnrc_sixlowpan_iphc: use gnrc_netif_hdr_get_netif() function

parent 868a856c
No related branches found
No related tags found
No related merge requests found
......@@ -1011,7 +1011,7 @@ void gnrc_sixlowpan_iphc_send(gnrc_pktsnip_t *pkt, void *ctx, unsigned page)
dispatch->next = pkt->next;
pkt->next = dispatch;
gnrc_netif_t *netif = gnrc_netif_get_by_pid(netif_hdr->if_pid);
gnrc_netif_t *netif = gnrc_netif_hdr_get_netif(netif_hdr);
assert(netif != NULL);
gnrc_sixlowpan_multiplex_by_size(pkt, orig_datagram_size, netif, page);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment