Fix an obvious typo.

MFC after:	2 weeks
This commit is contained in:
Xin LI 2016-11-28 06:32:05 +00:00
parent aa1a2adc92
commit 665d2db378
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=309232

View File

@ -280,7 +280,7 @@ set_hw_params(void)
pages = sysconf(_SC_PHYS_PAGES);
if (pages < 1) {
perror("sysconf pages");
psize = 1;
pages = 1;
}
psize = sysconf(_SC_PAGESIZE);
if (psize < 1) {