From 414af2ada2717b349abc122b221571c33743b38d Mon Sep 17 00:00:00 2001 From: Matthew Mondor Date: Sun, 30 Aug 2015 22:59:43 -0400 Subject: [PATCH] Avoid constant value 32-bit rollback for 64-bit/4GB heap --- src/c/main.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c/main.d b/src/c/main.d index ce605ae..9ec6f78 100755 --- a/src/c/main.d +++ b/src/c/main.d @@ -91,7 +91,7 @@ cl_fixnum ecl_option_values[ECL_OPT_LIMIT+1] = { #if ECL_FIXNUM_BITS <= 32 1024*1024*1024, /* ECL_OPT_HEAP_SIZE */ #else - 4024*1024*1024, /* ECL_OPT_HEAP_SIZE */ + 4294967296L, /* ECL_OPT_HEAP_SIZE */ #endif 1024*1024, /* ECL_OPT_HEAP_SAFETY_AREA */ 0, /* ECL_OPT_THREAD_INTERRUPT_SIGNAL */ -- 2.9.0