Commit c1488428 authored by Tom Rix's avatar Tom Rix Committed by J. Bruce Fields
Browse files

nfsd: remove unneeded break



Because every path through nfs4_find_file()'s
switch does an explicit return, the break is not needed.

Signed-off-by: default avatarTom Rix <trix@redhat.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent c09f56b8
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -5723,7 +5723,6 @@ nfs4_find_file(struct nfs4_stid *s, int flags)
			return find_readable_file(s->sc_file);
		else
			return find_writeable_file(s->sc_file);
		break;
	}

	return NULL;