Use NULL instead of 0 as a pointer

Recommended by 'sparse' tool
This commit is contained in:
Florian La Roche
2021-11-27 15:48:02 +01:00
committed by Erik Ekman
parent f3300731be
commit 089697bb1c
8 changed files with 12 additions and 12 deletions

View File

@@ -610,7 +610,7 @@ test_init(void * arg)
#endif /* NO_SYS */
/* init randomizer again (seed per thread) */
srand((unsigned int)time(0));
srand((unsigned int)time(NULL));
/* init network interfaces */
test_netif_init();