aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-08 19:28:33 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-08 19:28:33 +0000
commit7128363ea48d49fadc3da6a7966fe960d818a196 (patch)
treeaaef927682dec4099ef7028731d75023d8dab46f
parent2f66127ba86be54c829b34bed11fcdd30c44f30d (diff)
Fix a typo in the stack size calculation just introduced.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@199628 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--include/asterisk/utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/utils.h b/include/asterisk/utils.h
index 253cfa91d..58b861bd6 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)