From 4a22d6d5a2fd6ba3f56906131f297f694ea47cfe Mon Sep 17 00:00:00 2001 From: goldsimon Date: Fri, 20 Apr 2018 07:52:35 +0200 Subject: [PATCH] sockets_stresstest: fix typo (&1, not %1) --- test/sockets/sockets_stresstest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sockets/sockets_stresstest.c b/test/sockets/sockets_stresstest.c index 396b2273..3ac553b1 100644 --- a/test/sockets/sockets_stresstest.c +++ b/test/sockets/sockets_stresstest.c @@ -453,7 +453,7 @@ sockets_stresstest_conn_client(void *arg) LWIP_ASSERT("s >= 0", s >= 0); #if LWIP_NETCONN_FULLDUPLEX - if (LWIP_RAND() % 1) { + if (LWIP_RAND() & 1) { sys_thread_t t; data = (struct sockets_stresstest_fullduplex*)mem_malloc(sizeof(struct sockets_stresstest_fullduplex)); LWIP_ASSERT("data != NULL", data != 0);