From e6c97b24622d70fb247bff88ae903b578bc93437 Mon Sep 17 00:00:00 2001 From: tilghman Date: Wed, 20 Sep 2006 20:57:57 +0000 Subject: A few misses from constification git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43366 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_followme.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/app_followme.c') diff --git a/apps/app_followme.c b/apps/app_followme.c index bde537018..0ee3abc3a 100644 --- a/apps/app_followme.c +++ b/apps/app_followme.c @@ -149,7 +149,7 @@ AST_APP_OPTIONS(followme_opts, { static int ynlongest = 0; static time_t start_time, answer_time, end_time; -static char *featuredigittostr; +static const char *featuredigittostr; static int featuredigittimeout = 5000; /*!< Feature Digit Timeout */ static const char *defaultmoh = "default"; /*!< Default Music-On-Hold Class */ @@ -288,9 +288,9 @@ static int reload_followme(void) int timeout; char *timeoutstr; int numorder; - char *takecallstr; - char *declinecallstr; - char *tmpstr; + const char *takecallstr; + const char *declinecallstr; + const char *tmpstr; cfg = ast_config_load("followme.conf"); if (!cfg) { -- cgit v1.2.3