aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Green <andy@warmcat.com>2021-11-08 09:51:19 +0000
committerAndy Green <andy@warmcat.com>2021-11-08 11:05:28 +0000
commita00703f50074f53d4af0250c6340245e3470490b (patch)
tree513a20b4644d2b822e29ca458b1f1c231314e6ff
parent39380ffbac0df4af91fe79a2eb51ae86769bdc45 (diff)
downloadlibwebsockets-a00703f50074f53d4af0250c6340245e3470490b.tar.gz
unix-sockets: NOP for coverity
continue here makes no difference than using break, but continue gets us a pointless complaint "statement continue does not have any effect" and break does not.
-rw-r--r--lib/plat/unix/unix-sockets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plat/unix/unix-sockets.c b/lib/plat/unix/unix-sockets.c
index 3efe08e8..24fdb704 100644
--- a/lib/plat/unix/unix-sockets.c
+++ b/lib/plat/unix/unix-sockets.c
@@ -371,7 +371,7 @@ lws_interface_to_sa(int ipv6, const char *ifname, struct sockaddr_in *addr,
break;
#endif
default:
- continue;
+ break;
}
}