aboutsummaryrefslogtreecommitdiffstats
path: root/utils.c
diff options
context:
space:
mode:
authortwisted <twisted@f38db490-d61c-443f-a65b-d21fe96a405b>2005-03-03 16:21:33 +0000
committertwisted <twisted@f38db490-d61c-443f-a65b-d21fe96a405b>2005-03-03 16:21:33 +0000
commit7afe2191c38965df83b0c236c5469d420e40114d (patch)
treebb2734bc6c6f65a4058c6293d28514917fc543a1 /utils.c
parent9c7b6ff845ddf5869d9c5cbcb5e98ace5973b7b0 (diff)
Fix AST_STACKSIZE to match utils.h of AST_STACK_SIZE (bug 3706)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5127 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils.c')
-rwxr-xr-xutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.c b/utils.c
index 6267bbbb7..3bd35b3ba 100755
--- a/utils.c
+++ b/utils.c
@@ -396,7 +396,7 @@ int ast_pthread_create(pthread_t *thread, pthread_attr_t *attr, void *(*start_ro
pthread_attr_init(&lattr);
attr = &lattr;
}
- errno = pthread_attr_setstacksize(attr, AST_STACKSIZE);
+ errno = pthread_attr_setstacksize(attr, AST_STACK_SIZE);
if (errno)
ast_log(LOG_WARNING, "pthread_attr_setstacksize returned non-zero: %s\n", strerror(errno));
return pthread_create(thread, attr, start_routine, data); /* We're in ast_pthread_create, so it's okay */