rpcdebug.c:77:4: warning: this statement may fall through [-Wimplicit-fallthrough=] Signed-off-by: Steve Dickson <steved@xxxxxxxxxx> --- 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; -- 2.13.3 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html