svn commit: r327968 - head/sys/kern

Bjoern A. Zeeb bz at FreeBSD.org
Sun Jan 14 15:01:26 UTC 2018


Author: bz
Date: Sun Jan 14 15:01:25 2018
New Revision: 327968
URL: https://svnweb.freebsd.org/changeset/base/327968

Log:
  Remove trailing whitespace.
  No functional change.

Modified:
  head/sys/kern/kern_fork.c

Modified: head/sys/kern/kern_fork.c
==============================================================================
--- head/sys/kern/kern_fork.c	Sun Jan 14 14:33:22 2018	(r327967)
+++ head/sys/kern/kern_fork.c	Sun Jan 14 15:01:25 2018	(r327968)
@@ -69,7 +69,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/acct.h>
 #include <sys/ktr.h>
 #include <sys/ktrace.h>
-#include <sys/unistd.h>	
+#include <sys/unistd.h>
 #include <sys/sdt.h>
 #include <sys/sx.h>
 #include <sys/sysent.h>
@@ -186,7 +186,7 @@ sys_rfork(struct thread *td, struct rfork_args *uap)
 
 int	nprocs = 1;		/* process 0 */
 int	lastpid = 0;
-SYSCTL_INT(_kern, OID_AUTO, lastpid, CTLFLAG_RD, &lastpid, 0, 
+SYSCTL_INT(_kern, OID_AUTO, lastpid, CTLFLAG_RD, &lastpid, 0,
     "Last used PID");
 
 /*
@@ -219,7 +219,7 @@ sysctl_kern_randompid(SYSCTL_HANDLER_ARGS)
 		else if (pid < 0 || pid > pid_max - 100)
 			/* out of range */
 			randompid = pid_max - 100;
-		else if (pid < 100)	 
+		else if (pid < 100)
 			/* Make it reasonable */
 			randompid = 100;
 		else
@@ -461,7 +461,7 @@ do_fork(struct thread *td, struct fork_req *fr, struct
 			fdtol->fdl_refcount++;
 			FILEDESC_XUNLOCK(p1->p_fd);
 		} else {
-			/* 
+			/*
 			 * Shared file descriptor table, and different
 			 * process leaders.
 			 */


More information about the svn-src-head mailing list