lint: missing break in switch statement

This commit is contained in:
Kurtis Rader
2016-11-01 22:36:30 -07:00
parent f6047f02d6
commit 4f4d34e664
13 changed files with 61 additions and 31 deletions

View File

@@ -284,7 +284,7 @@ static bool io_transmogrify(const io_chain_t &in_chain, io_chain_t *out_chain,
}
default: {
DIE("unhandled io_mode constant");
abort();
break;
}
}
@@ -827,7 +827,7 @@ void exec_job(parser_t &parser, job_t *j) {
case INTERNAL_EXEC:
// We should have handled exec up above.
DIE("INTERNAL_EXEC process found in pipeline, where it should never be. Aborting.");
abort();
break;
}
if (exec_error) {
@@ -1089,7 +1089,7 @@ void exec_job(parser_t &parser, job_t *j) {
case INTERNAL_EXEC: {
// We should have handled exec up above.
DIE("INTERNAL_EXEC process found in pipeline, where it should never be. Aborting.");
abort();
break;
}
}