aboutsummaryrefslogtreecommitdiffstats
path: root/main/astmm.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-05-22 16:53:41 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-05-22 16:53:41 +0000
commitc208610d90db5a241e187413c831309cd5f13f32 (patch)
tree544e63f880d7dbd634a09888813d70988ef7dcf5 /main/astmm.c
parenta09dfb74c6d47b649f066fcde9591b2036708e08 (diff)
Two more minor fixes due to constification
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@196272 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/astmm.c')
-rw-r--r--main/astmm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/astmm.c b/main/astmm.c
index 3b3a671a9..2c9b464b5 100644
--- a/main/astmm.c
+++ b/main/astmm.c
@@ -324,7 +324,7 @@ int __ast_vasprintf(char **strp, const char *fmt, va_list ap, const char *file,
static char *handle_memory_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
{
- char *fn = NULL;
+ const char *fn = NULL;
struct ast_region *reg;
unsigned int x;
unsigned int len = 0;
@@ -386,7 +386,7 @@ static char *handle_memory_show(struct ast_cli_entry *e, int cmd, struct ast_cli
static char *handle_memory_show_summary(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
{
- char *fn = NULL;
+ const char *fn = NULL;
int x;
struct ast_region *reg;
unsigned int len = 0;