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_adsiprog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/app_adsiprog.c') diff --git a/apps/app_adsiprog.c b/apps/app_adsiprog.c index b889f96f1..ae302a1e3 100644 --- a/apps/app_adsiprog.c +++ b/apps/app_adsiprog.c @@ -45,7 +45,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include "asterisk/utils.h" #include "asterisk/lock.h" -static char *app = "ADSIProg"; +static const char app[] = "ADSIProg"; /*** DOCUMENTATION @@ -71,7 +71,7 @@ static char *app = "ADSIProg"; struct adsi_event { int id; - char *name; + const char *name; }; static const struct adsi_event events[] = { -- cgit v1.2.3