pmc: Add missing break in switch/case.

Signed-off-by: Richard Cochran <richardcochran@gmail.com>
master
Richard Cochran 2018-02-27 09:57:44 -08:00
parent 201abc9b95
commit 8ecdedaa69
1 changed files with 1 additions and 0 deletions

View File

@ -314,6 +314,7 @@ struct ptp_message *pmc_recv(struct pmc *pmc)
break; break;
case -EPROTO: case -EPROTO:
pr_debug("ignoring message"); pr_debug("ignoring message");
break;
} }
goto failed; goto failed;
} }