From 8ecdedaa69bd4045a3fe6ee82e3f097670e19487 Mon Sep 17 00:00:00 2001 From: Richard Cochran Date: Tue, 27 Feb 2018 09:57:44 -0800 Subject: [PATCH] pmc: Add missing break in switch/case. Signed-off-by: Richard Cochran --- pmc_common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/pmc_common.c b/pmc_common.c index 447cf99..c1b0d3e 100644 --- a/pmc_common.c +++ b/pmc_common.c @@ -314,6 +314,7 @@ struct ptp_message *pmc_recv(struct pmc *pmc) break; case -EPROTO: pr_debug("ignoring message"); + break; } goto failed; }