svn commit: r342889 - head/sys/kern

Brooks Davis brooks at FreeBSD.org
Wed Jan 9 17:24:00 UTC 2019


Author: brooks
Date: Wed Jan  9 17:23:59 2019
New Revision: 342889
URL: https://svnweb.freebsd.org/changeset/base/342889

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

Modified:
  head/sys/kern/vfs_syscalls.c

Modified: head/sys/kern/vfs_syscalls.c
==============================================================================
--- head/sys/kern/vfs_syscalls.c	Wed Jan  9 17:23:08 2019	(r342888)
+++ head/sys/kern/vfs_syscalls.c	Wed Jan  9 17:23:59 2019	(r342889)
@@ -4195,7 +4195,7 @@ sys_getfhat(struct thread *td, struct getfhat_args *ua
 {
 
 	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));
 }


More information about the svn-src-all mailing list