]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix a typo in the stack size calculation just introduced.
authorSean Bright <sean@malleable.com>
Mon, 8 Jun 2009 19:28:33 +0000 (19:28 +0000)
committerSean Bright <sean@malleable.com>
Mon, 8 Jun 2009 19:28:33 +0000 (19:28 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@199628 65c4cc65-6c06-0410-ace0-fbb531ad65f3

include/asterisk/utils.h

index 253cfa91d5a5baa8a3232d01c0e52738e549262e..58b861bd67d3263df25ca63368a6036fcc5bb279 100644 (file)
@@ -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)