aboutsummaryrefslogtreecommitdiffstats
path: root/main/astmm.c
diff options
context:
space:
mode:
authorjamesgolovich <jamesgolovich@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-24 18:35:04 +0000
committerjamesgolovich <jamesgolovich@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-24 18:35:04 +0000
commit666fd4c4621115bd6174789f2ea1acc72785507a (patch)
tree57a6621e6e57fd0f4ce51a32ca33cea57b02818a /main/astmm.c
parent341f67c19854916a23fff79b3c9ce4501368f73b (diff)
Increase the size of filenames stored when astmm is used. If the path
length was long they would be truncated and grouped together with whatever matches git-svn-id: http://svn.digium.com/svn/asterisk/trunk@100224 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/astmm.c')
-rw-r--r--main/astmm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/astmm.c b/main/astmm.c
index 3d180acec..69c124fbe 100644
--- a/main/astmm.c
+++ b/main/astmm.c
@@ -65,7 +65,7 @@ static FILE *mmlog;
static struct ast_region {
struct ast_region *next;
- char file[40];
+ char file[64];
char func[40];
unsigned int lineno;
enum func_type which;