summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2017-07-19 15:48:30 -0400
committerSteve Dickson <steved@redhat.com>2017-07-26 11:24:29 -0400
commitacb6ffcdcae8d7d1b4b591dd772740a555c735b1 (patch)
tree277deb28a74f05eb14770a4199e47a57f076243c
parentba03a02c2fd912f370e1f55de921a403bf5f9247 (diff)
downloadnfs-utils-acb6ffcdcae8d7d1b4b591dd772740a555c735b1.tar.gz
rpcdebug.c: remove a warning
rpcdebug.c:77:4: warning: this statement may fall through [-Wimplicit-fallthrough=] Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--tools/rpcdebug/rpcdebug.c3
1 files changed, 2 insertions, 1 deletions
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;