From 69c56ab39ab88fb6ece79475eac99029b17ae170 Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Wed, 19 Jul 2017 16:40:37 -0400 Subject: nfs4mount: removed a warning nfs4mount.c:445:8: warning: this statement may fall through [-Wimplicit-fallthrough=] Signed-off-by: Steve Dickson --- utils/mount/nfs4mount.c | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/mount/nfs4mount.c b/utils/mount/nfs4mount.c index 028e7cd..89629ed 100644 --- a/utils/mount/nfs4mount.c +++ b/utils/mount/nfs4mount.c @@ -444,6 +444,7 @@ int nfs4mount(const char *spec, const char *node, int flags, case RPC_SYSTEMERROR: if (errno == ETIMEDOUT) break; + /* FALLTHRU */ default: rpc_mount_errors(hostname, 0, bg); goto fail; -- cgit