diff options
author | 2019-07-08 23:59:32 +0000 | |
---|---|---|
committer | 2019-07-08 23:59:32 +0000 | |
commit | 34349d00a5d651569d692cb6a0b24b37425107cf (patch) | |
tree | 3d116462ef98f2e956f45dea0e6cb1a743c0f97d | |
parent | Remove some "set but not used" variables in ahci(4)'s hibernate code. (diff) | |
download | wireguard-openbsd-34349d00a5d651569d692cb6a0b24b37425107cf.tar.xz wireguard-openbsd-34349d00a5d651569d692cb6a0b24b37425107cf.zip |
Remove trailing whitespace from a macro
ok deraadt
-rw-r--r-- | sys/conf/param.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/conf/param.c b/sys/conf/param.c index fd38300be34..28b54ba5bfd 100644 --- a/sys/conf/param.c +++ b/sys/conf/param.c @@ -1,4 +1,4 @@ -/* $OpenBSD: param.c,v 1.40 2019/04/28 14:51:16 deraadt Exp $ */ +/* $OpenBSD: param.c,v 1.41 2019/07/08 23:59:32 mlarkin Exp $ */ /* $NetBSD: param.c,v 1.16 1996/03/12 03:08:40 mrg Exp $ */ /* @@ -84,7 +84,7 @@ int tickadj = 240000 / (60 * HZ); /* can adjust 240ms in 60s */ struct timezone tz __attribute__ ((section(".data"))) = { TIMEZONE, DST }; #define NPROCESS (30 + 16 * MAXUSERS) #define NTEXT (80 + NPROCESS / 8) /* actually the object cache */ -#define NVNODE (NPROCESS * 2 + NTEXT + 100) +#define NVNODE (NPROCESS * 2 + NTEXT + 100) int initialvnodes = NVNODE; int maxprocess = NPROCESS; int maxthread = NPROCESS + 8 * MAXUSERS; |