diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2017-07-14 16:48:01 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2017-07-14 16:59:43 +0200 |
commit | acd738fc7f5a8ca637e691e45346d74a149b75c9 (patch) | |
tree | 62d1445b34e13fdfab132fa31cfb0ff9145b73ae /lib/command_match.c | |
parent | Merge pull request #803 from opensourcerouting/redhat-doc-fixes-master (diff) | |
download | frr-acd738fc7f5a8ca637e691e45346d74a149b75c9.tar.xz frr-acd738fc7f5a8ca637e691e45346d74a149b75c9.zip |
*: fix GCC 7 switch/case fallthrough warnings
Need a comment on these.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/command_match.c')
-rw-r--r-- | lib/command_match.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/command_match.c b/lib/command_match.c index 75d8fdc3d..5a57bb919 100644 --- a/lib/command_match.c +++ b/lib/command_match.c @@ -403,6 +403,7 @@ command_complete (struct graph *graph, trace_matcher ("trivial_match\n"); if (exact_match_exists && !last_token) break; + /* fallthru */ case exact_match: trace_matcher ("exact_match\n"); if (last_token) |