From 8e8a9897209f831e54c21fbc3dcef5c08fc41088 Mon Sep 17 00:00:00 2001 From: Richard Cochran Date: Sat, 1 Nov 2014 12:51:02 +0100 Subject: [PATCH] Coding style: add missing break statement from a switch/case construct. Signed-off-by: Richard Cochran --- port.c | 1 + 1 file changed, 1 insertion(+) diff --git a/port.c b/port.c index d52f1f1..475d3e4 100644 --- a/port.c +++ b/port.c @@ -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;