changeset 798:1c67ec58f0a1 HEAD

Use a bit larger initial data stack size when DEBUG is set - current one is too small for message searching.
author Timo Sirainen <tss@iki.fi>
date Wed, 18 Dec 2002 03:31:53 +0200
parents cecf76430cac
children 41dde6822eea
files src/lib/data-stack.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib/data-stack.c	Wed Dec 18 03:23:20 2002 +0200
+++ b/src/lib/data-stack.c	Wed Dec 18 03:31:53 2002 +0200
@@ -42,7 +42,7 @@
 /* Initial stack size - this should be kept in a size that doesn't exceed
    in a normal use to avoid extra malloc()ing. */
 #ifdef DEBUG
-#  define INITIAL_STACK_SIZE (1024*8)
+#  define INITIAL_STACK_SIZE (1024*10)
 #else
 #  define INITIAL_STACK_SIZE (1024*32)
 #endif