Message ID | 20170721163806.15803-10-steved@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
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;
nfsmount.c:684:8: warning: this statement may fall through [-Wimplicit-fallthrough=] Signed-off-by: Steve Dickson <steved@redhat.com> --- utils/mount/nfsmount.c | 1 + 1 file changed, 1 insertion(+)