Typo: should have been changed to a constant

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10784 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher 2006-02-22 21:20:28 +00:00
parent cff3864fa5
commit 9a55cf9bc1
1 changed files with 1 additions and 1 deletions

View File

@ -836,7 +836,7 @@ void ast_backtrace(void)
void **addresses;
char **strings;
addresses = calloc(levels, sizeof(void *));
addresses = calloc(20, sizeof(void *));
if (addresses) {
count = backtrace(addresses, 20);
strings = backtrace_symbols(addresses, count);