diff options
author | Pascal Quantin <pascal.quantin@gmail.com> | 2018-05-02 18:44:43 +0200 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2018-05-02 21:25:26 +0000 |
commit | 30c0d7ba4970d2ccc77514afdcdbf5a86b8866a2 (patch) | |
tree | 7f9c4f029044e8720989534ad317499366189b8a | |
parent | 1eda133c36466e9d37778b0891b8d8ef2a13827a (diff) | |
download | wireshark-30c0d7ba4970d2ccc77514afdcdbf5a86b8866a2.tar.gz wireshark-30c0d7ba4970d2ccc77514afdcdbf5a86b8866a2.tar.bz2 wireshark-30c0d7ba4970d2ccc77514afdcdbf5a86b8866a2.zip |
erf.c: fix compilation with gcc 8
erf.c:2562:9: error: this statement may fall through [-Werror=implicit-fallthrough=]
Change-Id: Ib516a689e078a9e1eea96d692ffbbaab398f2bcb
Reviewed-on: https://code.wireshark.org/review/27271
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r-- | wiretap/erf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/erf.c b/wiretap/erf.c index aa927d2860..7b139de061 100644 --- a/wiretap/erf.c +++ b/wiretap/erf.c @@ -2574,8 +2574,8 @@ static int populate_capture_host_info(erf_t *erf_priv, wtap *wth, union wtap_pse break; } } - /* Fall through */ } + /* Fall through */ case ERF_META_SECTION_HOST: { if (erf_priv->host_gentime > state->gen_time) { |