From 12ff77f9757d240de38f0a3d6ed569831eeecf95 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Sun, 7 Jun 2009 14:55:51 +0000 Subject: Global var cleanup - constification and removing unused vars. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@199479 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_exec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/app_exec.c') 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) { -- cgit v1.2.3