summaryrefslogtreecommitdiff
path: root/main/event.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2011-06-03 19:57:03 +0000
committerRichard Mudgett <rmudgett@digium.com>2011-06-03 19:57:03 +0000
commit397c379a7d4d3f0981890dc532d1926e792036e2 (patch)
tree3e82437327082d646e5b0a3d352e16ceb215c574 /main/event.c
parentc55fb048b25704032bd6dc9a0176af596352377a (diff)
Merged revisions 321812-321813 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r321812 | rmudgett | 2011-06-03 14:55:21 -0500 (Fri, 03 Jun 2011) | 1 line Correct IAX2 and SIP event subscription description string. ........ r321813 | rmudgett | 2011-06-03 14:56:09 -0500 (Fri, 03 Jun 2011) | 1 line Constify subscription description parameter string. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@321814 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/event.c')
-rw-r--r--main/event.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/event.c b/main/event.c
index 4f8b08bb2..a50f611ed 100644
--- a/main/event.c
+++ b/main/event.c
@@ -840,7 +840,7 @@ int ast_event_sub_activate(struct ast_event_sub *sub)
}
struct ast_event_sub *ast_event_subscribe(enum ast_event_type type, ast_event_cb_t cb,
- char *description, void *userdata, ...)
+ const char *description, void *userdata, ...)
{
va_list ap;
enum ast_event_ie_type ie_type;