aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_exec.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-07 14:55:51 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-07 14:55:51 +0000
commitf63398715ec35c4e40f2afb7400d82fe32ae321c (patch)
tree2042818ecf72a633218fb22c72ba5e69ba659df3 /apps/app_exec.c
parent08f4ed038a889b376dcd0cd7d5a4c0a170cba89a (diff)
Global var cleanup - constification and removing unused vars.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@199479 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_exec.c')
-rw-r--r--apps/app_exec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/app_exec.c b/apps/app_exec.c
index b840e24b9..6ffc0bca9 100644
--- a/apps/app_exec.c
+++ b/apps/app_exec.c
@@ -125,9 +125,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
* affecting the dialplan.
*/
-static char *app_exec = "Exec";
-static char *app_tryexec = "TryExec";
-static char *app_execif = "ExecIf";
+static const char app_exec[] = "Exec";
+static const char app_tryexec[] = "TryExec";
+static const char app_execif[] = "ExecIf";
static int exec_exec(struct ast_channel *chan, const char *data)
{