From e4880150b1746ede7bd3c9e0f8fb88901a8c562b Mon Sep 17 00:00:00 2001 From: kpfleming 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: http://svn.digium.com/svn/asterisk/trunk@18552 f38db490-d61c-443f-a65b-d21fe96a405b --- codecs/codec_g726.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'codecs/codec_g726.c') diff --git a/codecs/codec_g726.c b/codecs/codec_g726.c index a71651cd5..e3e766b47 100644 --- a/codecs/codec_g726.c +++ b/codecs/codec_g726.c @@ -853,7 +853,7 @@ int load_module (void) return res; } -char *description (void) +const char *description(void) { return "ITU G.726-32kbps G726 Transcoder"; } @@ -863,7 +863,7 @@ int usecount (void) return me.usecnt; } -char *key() +const char *key() { return ASTERISK_GPL_KEY; } -- cgit v1.2.3