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

tests/candev: fix compilation with NDEBUG

This commit is contained in:
Gunar Schorcht 2020-06-26 09:44:46 +02:00
parent 8c044c0163
commit ff4641ec36

View File

@ -29,6 +29,7 @@
#include <stdlib.h>
#include <string.h>
#include "shell.h"
#include "test_utils/expect.h"
#include "can/device.h"
#if IS_USED(MODULE_PERIPH_CAN)
@ -220,7 +221,7 @@ int main(void)
/* add initialization for other candev drivers here */
#endif
assert(candev);
expect(candev);
candev->event_callback = _can_event_callback;
candev->isr_arg = NULL;