Explorar el Código

sockets_stresstest: fix typo (&1, not %1)

goldsimon hace 7 años
padre
commit
4a22d6d5a2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      test/sockets/sockets_stresstest.c

+ 1 - 1
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);