aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtpproxy.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-03-05 17:31:59 +0100
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2017-03-07 12:51:22 +0000
commit5dcd11261290d2e4592038c085a04bcd3d6d70ed (patch)
tree7c5216c4f7b8611da2db2415e2235df4e5aea5d3 /epan/dissectors/packet-rtpproxy.c
parentb56afb1211be9ce610078c22ad91f0d3e5ea6d12 (diff)
rtpproxy: fix this statement may fall through [-Werror=implicit-fallthrough=] found by gcc7
Change-Id: Ide19cb51d5ce0a9d0a0634ad492c9e81cbc2c810 Reviewed-on: https://code.wireshark.org/review/20411 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Peter Lemenkov <lemenkov@gmail.com> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-rtpproxy.c')
-rw-r--r--epan/dissectors/packet-rtpproxy.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-rtpproxy.c b/epan/dissectors/packet-rtpproxy.c
index 5f249ca393..466dee8fec 100644
--- a/epan/dissectors/packet-rtpproxy.c
+++ b/epan/dissectors/packet-rtpproxy.c
@@ -614,6 +614,7 @@ dissect_rtpproxy(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data
proto_tree_add_item(rtpproxy_tree, hf_rtpproxy_status, tvb, offset, realsize - offset, ENC_ASCII | ENC_NA);
break;
}
+ /* FALL THROUGH */
case 'i':
case 'x':
case 'u':
@@ -629,6 +630,7 @@ dissect_rtpproxy(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data
call_dissector(bencode_handle, subtvb, pinfo, rtpproxy_tree);
break;
}
+ /* FALL THROUGH */
case 'p':
case 'v':
case 'r':