aboutsummaryrefslogtreecommitdiffstats
path: root/epan/stats_tree.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-03-11 16:41:00 +0100
committerMichael Mann <mmann78@netscape.net>2017-03-11 17:28:58 +0000
commit02ea90f3ccf2a349c2569308f2c98ef159c0b466 (patch)
tree5a563249d2f0e976a4ecce5b3c1ffc5828c33d29 /epan/stats_tree.c
parent5b9879806d293938820e657354e5e631437ce1bf (diff)
stats_tree: fix this statement may fall through [-Werror=implicit-fallthrough] found by gcc7
Change-Id: Idd5ab938b95d515cdf8b2a8568456f44b3dd85ac Reviewed-on: https://code.wireshark.org/review/20496 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/stats_tree.c')
-rw-r--r--epan/stats_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/stats_tree.c b/epan/stats_tree.c
index 260b9ee170..5bc7916688 100644
--- a/epan/stats_tree.c
+++ b/epan/stats_tree.c
@@ -649,7 +649,7 @@ stats_tree_manip_node(manip_node_mode mode, stats_tree *st, const char *name,
case MN_AVERAGE:
node->counter++;
update_burst_calc(node, 1);
- /* fall through to average code */
+ /* fall through */ /*to average code */
case MN_AVERAGE_NOTICK:
node->total += value;
if (node->minvalue > value) {