From 6b8ee0f663c44452a7568a0f2ffb038ee7ae0972 Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Wed, 19 Jul 2017 16:37:56 -0400 Subject: nfsmount: remove a warning nfsmount.c:684:8: warning: this statement may fall through [-Wimplicit-fallthrough=] Signed-off-by: Steve Dickson --- utils/mount/nfsmount.c | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/mount/nfsmount.c b/utils/mount/nfsmount.c index 930622d..ae4a3da 100644 --- a/utils/mount/nfsmount.c +++ b/utils/mount/nfsmount.c @@ -683,6 +683,7 @@ nfsmount(const char *spec, const char *node, int flags, case RPC_SYSTEMERROR: if (errno == ETIMEDOUT) break; + /* FALLTHRU */ default: rpc_mount_errors(*nfs_server.hostname, 0, bg); goto fail; -- cgit