summaryrefslogtreecommitdiffstats
path: root/sys/kern/imgact_aout.c
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2011-06-16 21:59:16 +0000
committerkib <kib@FreeBSD.org>2011-06-16 21:59:16 +0000
commitf13e1b44c6510a2598a800d5726c08f9ffba7b35 (patch)
treeefac04545e702b4af9fe772b55bc09dc176ec440 /sys/kern/imgact_aout.c
parent00d33feb9db18288f251841bbebdf3b74f4d875e (diff)
downloadFreeBSD-src-f13e1b44c6510a2598a800d5726c08f9ffba7b35.zip
FreeBSD-src-f13e1b44c6510a2598a800d5726c08f9ffba7b35.tar.gz
Fix silly typo that resulted in the a.out process stack to end at
~200MB instead of 3GB on amd64.
Diffstat (limited to 'sys/kern/imgact_aout.c')
-rw-r--r--sys/kern/imgact_aout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/imgact_aout.c b/sys/kern/imgact_aout.c
index 2f889ca..333dca8 100644
--- a/sys/kern/imgact_aout.c
+++ b/sys/kern/imgact_aout.c
@@ -103,7 +103,7 @@ struct sysentvec aout_sysvec = {
#elif defined(__amd64__)
-#define AOUT32_USRSTACK 0xbfc0000
+#define AOUT32_USRSTACK 0xbfc00000
#define AOUT32_PS_STRINGS \
(AOUT32_USRSTACK - sizeof(struct freebsd32_ps_strings))
OpenPOWER on IntegriCloud