diff options
| author | Steve Dickson <steved@redhat.com> | 2017-07-19 16:37:56 -0400 |
|---|---|---|
| committer | Steve Dickson <steved@redhat.com> | 2017-07-26 11:30:28 -0400 |
| commit | 6b8ee0f663c44452a7568a0f2ffb038ee7ae0972 (patch) | |
| tree | e8f96cfe7386375061e6434814b59b83e8c6470e /utils | |
| parent | 2aa29fa3aa93507228192eb1954c6638463aac69 (diff) | |
| download | nfs-utils-6b8ee0f663c44452a7568a0f2ffb038ee7ae0972.tar.gz nfs-utils-6b8ee0f663c44452a7568a0f2ffb038ee7ae0972.tar.xz nfs-utils-6b8ee0f663c44452a7568a0f2ffb038ee7ae0972.zip | |
nfsmount: remove a warning
nfsmount.c:684:8: warning: this statement may fall through [-Wimplicit-fallthrough=]
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/mount/nfsmount.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |
