summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorcognet <cognet@FreeBSD.org>2006-07-27 14:36:28 +0000
committercognet <cognet@FreeBSD.org>2006-07-27 14:36:28 +0000
commit8bef7869abb101142e12200c14b0817d971838b9 (patch)
tree0d8dfdce8a040675019ae5a6a4f8d28995ff4dc4 /lib/libc/stdlib
parent982c62305a636f056ac62727e479a62dc9cb271d (diff)
downloadFreeBSD-src-8bef7869abb101142e12200c14b0817d971838b9.zip
FreeBSD-src-8bef7869abb101142e12200c14b0817d971838b9.tar.gz
Use 4 as QUANTUM_2POW_MIN on arm as it is on any other architecture, to avoid
triggering an assertion later.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c
index c1ce04e..3eae4ec 100644
--- a/lib/libc/stdlib/malloc.c
+++ b/lib/libc/stdlib/malloc.c
@@ -270,7 +270,7 @@ __FBSDID("$FreeBSD$");
# define SIZEOF_PTR 8
#endif
#ifdef __arm__
-# define QUANTUM_2POW_MIN 3
+# define QUANTUM_2POW_MIN 4
# define SIZEOF_PTR 4
# define USE_BRK
# define NO_TLS
OpenPOWER on IntegriCloud