From 1156721eaf8879f7a454e291ed13b42132e25d8b Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Fri, 16 Feb 2018 12:16:38 +0100 Subject: [PATCH] gnrc_sixlowpan_nd: add missing header `gnrc_pktsnip_t` is used in `net/gnrc/sixlowpan/nd.h` but it is not included. There were no compile errors yet, since this file is always included with some other GNRC headers, but it might not in the future. --- sys/include/net/gnrc/sixlowpan/nd.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/include/net/gnrc/sixlowpan/nd.h b/sys/include/net/gnrc/sixlowpan/nd.h index 7a97f326cc..67ae239e0d 100644 --- a/sys/include/net/gnrc/sixlowpan/nd.h +++ b/sys/include/net/gnrc/sixlowpan/nd.h @@ -26,6 +26,7 @@ #include #include "kernel_types.h" +#include "net/gnrc/pkt.h" #include "net/ipv6/addr.h" #include "net/ndp.h" #include "net/sixlowpan/nd.h"