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

sys/fuzzing: fix compilation with NDEBUG

This commit is contained in:
Gunar Schorcht 2020-06-26 12:23:47 +02:00
parent 8cd0aef67e
commit e84068e945

View File

@ -29,6 +29,7 @@ static int _dev_init(netdev_t *netdev)
static int _dev_get_device_type(netdev_t *netdev, void *value, size_t max_len)
{
(void)max_len;
assert(max_len == sizeof(uint16_t));
(void)netdev;