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

nrfmin: fix type for NETOPT_PROTO

The type [is documented as `gnrc_nettype_t`][1] so it should by checked
as such.

[1]: https://github.com/RIOT-OS/RIOT/blob/f9a3bdf1a749f0e6a0d9e79eee652d8b31d4d9e0/sys/include/net/netopt.h#L210-L212
parent f9a3bdf1
No related branches found
No related tags found
No related merge requests found
......@@ -490,9 +490,9 @@ static int nrfmin_get(netdev_t *dev, netopt_t opt, void *val, size_t max_len)
return sizeof(uint16_t);
#ifdef MODULE_GNRC_SIXLOWPAN
case NETOPT_PROTO:
assert(max_len >= sizeof(uint16_t));
*((uint16_t *)val) = GNRC_NETTYPE_SIXLOWPAN;
return sizeof(uint16_t);
assert(max_len == sizeof(gnrc_nettype_t));
*((gnrc_nettype_t *)val) = GNRC_NETTYPE_SIXLOWPAN;
return sizeof(gnrc_nettype_t);
#endif
case NETOPT_DEVICE_TYPE:
assert(max_len >= sizeof(uint16_t));
......
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