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:
parent
39380ffbac
commit
a00703f500
1 changed files with 1 additions and 1 deletions
|
@ -371,7 +371,7 @@ lws_interface_to_sa(int ipv6, const char *ifname, struct sockaddr_in *addr,
|
|||
break;
|
||||
#endif
|
||||
default:
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue