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