Nix trailing whitespace.

This commit is contained in:
riastradh 2017-03-18 05:45:48 +00:00
parent 5d735856a4
commit 068914dcb9
2 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_uidinfo.c,v 1.8 2013/03/10 17:55:42 pooka Exp $ */
/* $NetBSD: kern_uidinfo.c,v 1.9 2017/03/18 05:49:17 riastradh Exp $ */
/*-
* Copyright (c) 1982, 1986, 1991, 1993
@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_uidinfo.c,v 1.8 2013/03/10 17:55:42 pooka Exp $");
__KERNEL_RCSID(0, "$NetBSD: kern_uidinfo.c,v 1.9 2017/03/18 05:49:17 riastradh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -54,7 +54,7 @@ static u_long uihash;
static int
sysctl_kern_uidinfo_cnt(SYSCTLFN_ARGS)
{
{
static const struct {
const char *name;
u_int value;
@ -76,7 +76,7 @@ sysctl_kern_uidinfo_cnt(SYSCTLFN_ARGS)
node.sysctl_data = &cnt;
uip = uid_find(kauth_cred_geteuid(l->l_cred));
*(uint64_t *)node.sysctl_data =
*(uint64_t *)node.sysctl_data =
*(u_long *)((char *)uip + nv[i].value);
return sysctl_lookup(SYSCTLFN_CALL(&node));

View File

@ -1,4 +1,4 @@
/* $NetBSD: vfs_bio.c,v 1.269 2017/01/20 09:45:13 skrll Exp $ */
/* $NetBSD: vfs_bio.c,v 1.270 2017/03/18 05:45:48 riastradh Exp $ */
/*-
* Copyright (c) 2007, 2008, 2009 The NetBSD Foundation, Inc.
@ -123,7 +123,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: vfs_bio.c,v 1.269 2017/01/20 09:45:13 skrll Exp $");
__KERNEL_RCSID(0, "$NetBSD: vfs_bio.c,v 1.270 2017/03/18 05:45:48 riastradh Exp $");
#ifdef _KERNEL_OPT
#include "opt_bufcache.h"
@ -206,7 +206,7 @@ BIOHIST_DEFINE(biohist);
void
biohist_init(void)
{
BIOHIST_INIT(biohist, BIOHIST_SIZE);
}
@ -1014,7 +1014,7 @@ brelsel(buf_t *bp, int set)
KASSERT(mutex_owned(&bufcache_lock));
KASSERT(!cv_has_waiters(&bp->b_done));
KASSERT(bp->b_refcnt > 0);
SET(bp->b_cflags, set);
KASSERT(ISSET(bp->b_cflags, BC_BUSY));
@ -1973,7 +1973,7 @@ getiobuf(struct vnode *vp, bool waitok)
} else {
KASSERT(bp->b_objlock == &buffer_lock);
}
return bp;
}