style(9): fix the indent of a return.

This commit is contained in:
brooks 2019-01-09 17:23:59 +00:00
parent 5644e111a7
commit 48665600ce

View File

@ -4195,7 +4195,7 @@ sys_getfhat(struct thread *td, struct getfhat_args *uap)
{
if ((uap->flags & ~(AT_SYMLINK_NOFOLLOW | AT_BENEATH)) != 0)
return (EINVAL);
return (EINVAL);
return (kern_getfhat(td, uap->flags, uap->fd, uap->path, UIO_USERSPACE,
uap->fhp));
}