1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

netreg: suppress unused parameter warning

This commit is contained in:
Martine Lenders 2015-03-29 23:51:49 +02:00
parent 3b42fae668
commit 716a1bb0f5

View File

@ -124,6 +124,10 @@ ng_pktsnip_t *ng_netreg_hdr_build(ng_nettype_t type, ng_pktsnip_t *payload,
#endif
default:
(void)src;
(void)src_len;
(void)dst;
(void)dst_len;
return NULL;
}
}