summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-12-11 01:22:28 +0000
committerRoland McGrath <roland@gnu.org>1994-12-11 01:22:28 +0000
commitc11afdbf17e562e8b5d4f400f37f5d642964f42b (patch)
tree6c144e50a95e5842a0a1d89aa66e44228f4a024d
parent20247fb63772e3e2f86996cc0d63bd589712c8a3 (diff)
(start_execserver): Fix braino in last change.
-rw-r--r--libdiskfs/boot-start.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdiskfs/boot-start.c b/libdiskfs/boot-start.c
index d70d8599..7480d77b 100644
--- a/libdiskfs/boot-start.c
+++ b/libdiskfs/boot-start.c
@@ -516,7 +516,7 @@ start_execserver (void)
err = vm_protect (newt, 0, trunc_page (execserver_text_size) + 0x10000, 0,
VM_PROT_READ | VM_PROT_EXECUTE);
- bssloc = trunc_page (0x10000 + execserver_text_size + execserver_data_size);
+ bssloc = round_page (0x10000 + execserver_text_size + execserver_data_size);
err = vm_allocate (newt, &bssloc,
round_page (0x10000 +
execserver_text_size +