From 8f2686cc810018aa9629d03d0b2a0473a3242a7d Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sat, 17 Mar 2007 17:34:33 +0000 Subject: [PATCH] fix typo and build on osx --- init_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init_lib.c b/init_lib.c index a6461bb..bc1b381 100644 --- a/init_lib.c +++ b/init_lib.c @@ -88,7 +88,7 @@ umem_type_init(caddr_t start, size_t len, size_t pgsize) SYSTEM_INFO info; GetSystemInfo(&info); pagesize = info.dwPageSize; -#elseif !defined(__FreeBSD__) +#elif !defined(__FreeBSD__) pagesize = _sysconf(_SC_PAGESIZE); #else pagesize = PAGE_SIZE;