Coding style: add missing break statement from a switch/case construct.

Signed-off-by: Richard Cochran <richardcochran@gmail.com>
This commit is contained in:
Richard Cochran 2014-11-01 12:51:02 +01:00
parent a5911e69c7
commit 8e8a989720

1
port.c
View File

@ -2183,6 +2183,7 @@ enum fsm_event port_event(struct port *p, int fd_index)
break;
case -EPROTO:
pr_debug("port %hu: ignoring message", portnum(p));
break;
}
msg_put(msg);
return EV_NONE;