aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/codec_g723_1.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-08 22:01:19 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-08 22:01:19 +0000
commite4880150b1746ede7bd3c9e0f8fb88901a8c562b (patch)
treeb11d36d1b949f3ff1bc79f71f06c04c8f6c72f71 /codecs/codec_g723_1.c
parentf1822bc2a6fdfea0a2fa629a0dc70336f22af185 (diff)
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
Diffstat (limited to 'codecs/codec_g723_1.c')
-rw-r--r--codecs/codec_g723_1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/codecs/codec_g723_1.c b/codecs/codec_g723_1.c
index 4eeb60eb4..d6e1d1b22 100644
--- a/codecs/codec_g723_1.c
+++ b/codecs/codec_g723_1.c
@@ -326,7 +326,7 @@ int load_module(void)
return res;
}
-char *description(void)
+const char *description(void)
{
#ifdef ANNEX_B
return "Annex B (floating point) G.723.1/PCM16 Codec Translator";
@@ -341,7 +341,7 @@ int usecount(void)
return me.usecnt;
}
-char *key(void)
+const char *key(void)
{
return ASTERISK_GPL_KEY;
}