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 --- cdr/cdr_custom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cdr/cdr_custom.c') diff --git a/cdr/cdr_custom.c b/cdr/cdr_custom.c index abf1e816d..100db6c07 100644 --- a/cdr/cdr_custom.c +++ b/cdr/cdr_custom.c @@ -137,7 +137,7 @@ static int custom_log(struct ast_cdr *cdr) return 0; } -char *description(void) +const char *description(void) { return desc; } @@ -174,7 +174,7 @@ int usecount(void) return 0; } -char *key() +const char *key() { return ASTERISK_GPL_KEY; } -- cgit v1.2.3