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 --- res/res_monitor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'res/res_monitor.c') diff --git a/res/res_monitor.c b/res/res_monitor.c index ae6099b3e..6c00c593c 100644 --- a/res/res_monitor.c +++ b/res/res_monitor.c @@ -679,7 +679,7 @@ STATIC_MODULE int unload_module(void) return 0; } -STATIC_MODULE char *description(void) +STATIC_MODULE const char *description(void) { return "Call Monitoring Resource"; } @@ -697,7 +697,7 @@ STATIC_MODULE int usecount(void) #endif } -STATIC_MODULE char *key(void) +STATIC_MODULE const char *key(void) { return ASTERISK_GPL_KEY; } -- cgit v1.2.3