summaryrefslogtreecommitdiff
path: root/pbx/pbx_loopback.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-04-08 22:01:19 +0000
committerKevin P. Fleming <kpfleming@digium.com>2006-04-08 22:01:19 +0000
commitf10f427d49378e3a038ab65af8339c392d1dc799 (patch)
treeb11d36d1b949f3ff1bc79f71f06c04c8f6c72f71 /pbx/pbx_loopback.c
parent1bba6ec6fc2a031acc861d920a58efdca1922b0a (diff)
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
Diffstat (limited to 'pbx/pbx_loopback.c')
-rw-r--r--pbx/pbx_loopback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbx/pbx_loopback.c b/pbx/pbx_loopback.c
index 5f590cf8a..cadd73a14 100644
--- a/pbx/pbx_loopback.c
+++ b/pbx/pbx_loopback.c
@@ -169,7 +169,7 @@ static struct ast_switch loopback_switch =
matchmore: loopback_matchmore,
};
-char *description(void)
+const char *description(void)
{
return tdesc;
}
@@ -179,7 +179,7 @@ int usecount(void)
return 1;
}
-char *key()
+const char *key()
{
return ASTERISK_GPL_KEY;
}