aboutsummaryrefslogtreecommitdiffstats
path: root/main/astmm.c
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-18 09:46:18 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-18 09:46:18 +0000
commit659205253cbd99d28a324c50ae111dad77b7370c (patch)
treed2fc0e3293737a646ab91cc4ef176382ed433047 /main/astmm.c
parent7a8342612d9761622b8bc15f74fc9156e813286d (diff)
remove unnecessary (char *) casts for ast_config_AST_* variables.
There are some left in the .flex files, left to the maintainer... git-svn-id: http://svn.digium.com/svn/asterisk/trunk@93582 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 37dbd04d6..3d180acec 100644
--- a/main/astmm.c
+++ b/main/astmm.c
@@ -465,7 +465,7 @@ void __ast_mm_init(void)
ast_cli_register_multiple(cli_memory, sizeof(cli_memory) / sizeof(struct ast_cli_entry));
- snprintf(filename, sizeof(filename), "%s/mmlog", (char *)ast_config_AST_LOG_DIR);
+ snprintf(filename, sizeof(filename), "%s/mmlog", ast_config_AST_LOG_DIR);
if (option_verbose)
ast_verbose("Asterisk Malloc Debugger Started (see %s))\n", filename);