Coding style: add missing break statement from a switch/case construct.
Signed-off-by: Richard Cochran <richardcochran@gmail.com>master
parent
a5911e69c7
commit
8e8a989720
1
port.c
1
port.c
|
@ -2183,6 +2183,7 @@ enum fsm_event port_event(struct port *p, int fd_index)
|
||||||
break;
|
break;
|
||||||
case -EPROTO:
|
case -EPROTO:
|
||||||
pr_debug("port %hu: ignoring message", portnum(p));
|
pr_debug("port %hu: ignoring message", portnum(p));
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
msg_put(msg);
|
msg_put(msg);
|
||||||
return EV_NONE;
|
return EV_NONE;
|
||||||
|
|
Loading…
Reference in New Issue