[asterisk-commits] tilghman: trunk r196272 - /trunk/main/astmm.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri May 22 11:53:44 CDT 2009


Author: tilghman
Date: Fri May 22 11:53:41 2009
New Revision: 196272

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=196272
Log:
Two more minor fixes due to constification

Modified:
    trunk/main/astmm.c

Modified: trunk/main/astmm.c
URL: http://svn.asterisk.org/svn-view/asterisk/trunk/main/astmm.c?view=diff&rev=196272&r1=196271&r2=196272
==============================================================================
--- trunk/main/astmm.c (original)
+++ trunk/main/astmm.c Fri May 22 11:53:41 2009
@@ -324,7 +324,7 @@
 
 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_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;




More information about the asterisk-commits mailing list