summaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorJosh Roberson <josh@asteriasgi.com>2005-03-03 16:27:28 +0000
committerJosh Roberson <josh@asteriasgi.com>2005-03-03 16:27:28 +0000
commit50d09049e1de70d3ef97a231965442aac0731c78 (patch)
tree92576e83655072276ca4cbb9a380435c5befc05b /utils.c
parent2a4ae392f0328ade90b4d5a8257d9e00153e6e5f (diff)
Roll back previous change due to crossing of fixes
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5128 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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 3bd35b3ba..6267bbbb7 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_STACK_SIZE);
+ errno = pthread_attr_setstacksize(attr, AST_STACKSIZE);
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 */