1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

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.
This commit is contained in:
Andy Green 2021-11-08 09:51:19 +00:00
parent d3783f0c71
commit d1f6101bad

View file

@ -371,7 +371,7 @@ lws_interface_to_sa(int ipv6, const char *ifname, struct sockaddr_in *addr,
break;
#endif
default:
continue;
break;
}
}