From acb6ffcdcae8d7d1b4b591dd772740a555c735b1 Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Wed, 19 Jul 2017 15:48:30 -0400 Subject: rpcdebug.c: remove a warning rpcdebug.c:77:4: warning: this statement may fall through [-Wimplicit-fallthrough=] Signed-off-by: Steve Dickson --- tools/rpcdebug/rpcdebug.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/rpcdebug/rpcdebug.c b/tools/rpcdebug/rpcdebug.c index 18b1622..68206cc 100644 --- a/tools/rpcdebug/rpcdebug.c +++ b/tools/rpcdebug/rpcdebug.c @@ -74,7 +74,8 @@ main(int argc, char **argv) opt_c = 1; break; case 'h': - usage(0, module); + usage(0, module); /* usage does not return */ + break; case 'm': module = optarg; break; -- cgit