Remove trailing whitespace.

No functional change.
This commit is contained in:
Bjoern A. Zeeb 2018-01-14 15:01:25 +00:00
parent 4d7b980924
commit 8e23158af7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=327968

View File

@ -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 proc *p2, struct thread *
fdtol->fdl_refcount++;
FILEDESC_XUNLOCK(p1->p_fd);
} else {
/*
/*
* Shared file descriptor table, and different
* process leaders.
*/