summaryrefslogtreecommitdiff
path: root/src/w32heap.c
diff options
context:
space:
mode:
authorMartin Rudalics <rudalics@gmx.at>2017-09-15 09:39:17 +0200
committerMartin Rudalics <rudalics@gmx.at>2017-09-15 09:39:17 +0200
commit0ce6b4310d3bcb0f9c97c1c4bd0838d1628eae15 (patch)
tree2a263d0b3879c3eeb6b0b03c48c9308263a5a68c /src/w32heap.c
parent117f28430ab3e17f811e80025ee6a9165c87057e (diff)
downloademacs-0ce6b4310d3bcb0f9c97c1c4bd0838d1628eae15.tar.gz
In w32heap.c bump up DUMPED_HEAP_SIZE
* src/w32heap.c (DUMPED_HEAP_SIZE): Bump up DUMPED_HEAP_SIZE to 13*1024*1024 for 32-bit non-wide-integer builds.
Diffstat (limited to 'src/w32heap.c')
-rw-r--r--src/w32heap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32heap.c b/src/w32heap.c
index cd1324cc867..510f6762bbe 100644
--- a/src/w32heap.c
+++ b/src/w32heap.c
@@ -118,7 +118,7 @@ typedef struct _RTL_HEAP_PARAMETERS {
#if defined _WIN64 || defined WIDE_EMACS_INT
# define DUMPED_HEAP_SIZE (21*1024*1024)
#else
-# define DUMPED_HEAP_SIZE (12*1024*1024)
+# define DUMPED_HEAP_SIZE (13*1024*1024)
#endif
static unsigned char dumped_data[DUMPED_HEAP_SIZE];