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

@@ -333,7 +333,7 @@ static inline parse_token_type_t parse_token_type_from_tokenizer_token(
fprintf(stderr, "Bad token type %d passed to %s\n", (int)tokenizer_token_type,
__FUNCTION__);
DIE("bad token type");
abort();
break;
}
}
return result;