gcc warning for sign conversion

See patch #10143
This commit is contained in:
Florian La Roche 2021-11-22 08:41:03 +01:00 committed by Simon Goldschmidt
parent 62ac0faad8
commit 7c3aab2ea2

View File

@ -26,7 +26,7 @@
unsigned int
lwip_port_rand(void)
{
return rand();
return (unsigned int)rand();
}
Suite* create_suite(const char* name, testfunc *tests, size_t num_tests, SFun setup, SFun teardown)