mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 00:04:53 +00:00
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
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user