From aea9d7d0602da07a15230ca3c1ad8ea4506ebf62 Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Mon, 8 Jun 2009 19:28:33 +0000 Subject: [PATCH] Fix a typo in the stack size calculation just introduced. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@199628 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/asterisk/utils.h b/include/asterisk/utils.h index 253cfa91d5..58b861bd67 100644 --- a/include/asterisk/utils.h +++ b/include/asterisk/utils.h @@ -262,7 +262,7 @@ static force_inline int inaddrcmp(const struct sockaddr_in *sin1, const struct s || (sin1->sin_port != sin2->sin_port)); } -#define AST_STACKSIZE (((__WORDSIZE * 6) - 16) * 1024) +#define AST_STACKSIZE (((__WORDSIZE * 8) - 16) * 1024) #if defined(LOW_MEMORY) #define AST_BACKGROUND_STACKSIZE (((__WORDSIZE * 2) - 16) * 1024) -- 2.47.2