mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
Fix expression style.
Prodded by: jhb
This commit is contained in:
parent
3245ecbe92
commit
b089a17737
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=210295
@ -621,9 +621,8 @@ bufinit(void)
|
||||
lobufspace = hibufspace - MAXBSIZE;
|
||||
|
||||
lorunningspace = 512 * 1024;
|
||||
hirunningspace = lmin(roundup(hibufspace/64, MAXBSIZE), 16*1024*1024);
|
||||
if (hirunningspace < 1024 * 1024)
|
||||
hirunningspace = 1024 * 1024;
|
||||
hirunningspace = lmax(lmin(roundup(hibufspace / 64, MAXBSIZE),
|
||||
16 * 1024 * 1024), 1024 * 1024);
|
||||
|
||||
/*
|
||||
* Limit the amount of malloc memory since it is wired permanently into
|
||||
|
Loading…
Reference in New Issue
Block a user