From f10f427d49378e3a038ab65af8339c392d1dc799 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Sat, 8 Apr 2006 22:01:19 +0000 Subject: since the module API is changing, it's a good time to const-ify the description() and key() return values git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18552 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_features.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'channels/chan_features.c') diff --git a/channels/chan_features.c b/channels/chan_features.c index f8047d323..7dacc2e2c 100644 --- a/channels/chan_features.c +++ b/channels/chan_features.c @@ -579,12 +579,12 @@ int usecount() return usecnt; } -char *key() +const char *key() { return ASTERISK_GPL_KEY; } -char *description() +const char *description() { return (char *) desc; } -- cgit v1.2.3