diff options
author | Benjamin Barenblat <benjamin@barenblat.name> | 2018-07-18 17:22:49 -0400 |
---|---|---|
committer | HoĆ V. DINH <dinh.viet.hoa@gmail.com> | 2018-07-18 14:22:49 -0700 |
commit | 91300dbf44bcdfe822a9778d1c9d3cec2c2790d7 (patch) | |
tree | c34b5034c7d21c0304faf463f1405db2ad45aaa7 | |
parent | 31e308a36108301e2f9cc5c4489bb81ff84e6d3a (diff) |
Eliminate -Wimplicit-fallthrough trigger (#1767)
Insert a no-op `break`, preventing -Wimplicit-fallthrough from
triggering.
-rw-r--r-- | src/core/nntp/MCNNTPSession.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/nntp/MCNNTPSession.cpp b/src/core/nntp/MCNNTPSession.cpp index f3e485d0..2b573cc8 100644 --- a/src/core/nntp/MCNNTPSession.cpp +++ b/src/core/nntp/MCNNTPSession.cpp @@ -840,6 +840,7 @@ static int xover_resp_to_fields(struct newsnntp_xover_resp_item * item, struct m r = MAIL_ERROR_MEMORY; goto free_list; } + break case MAILIMF_ERROR_PARSE: break; |