summaryrefslogtreecommitdiff
path: root/main/message.c
diff options
context:
space:
mode:
authorMatthew Jordan <mjordan@digium.com>2012-10-02 17:16:20 +0000
committerMatthew Jordan <mjordan@digium.com>2012-10-02 17:16:20 +0000
commited3acdeb21d76713fe8e092855e51575b504c42d (patch)
tree13a5d91cdd3550504f83d7578a547616a8e78954 /main/message.c
parenta094707d5156a005fb6e9277bd4a14f9d7e7ab1c (diff)
Fix findings from check-in on r374177
Richard pointed out two problems with the check-in from r374177: * The ast_msg_shutdown function declaration doesn't match the prototype in main/message.c. * The ref/alloc function usage in astobj2 (in trunk) can use the ao2_t_* variants of the functions to allow the REF_DEBUG flag to enable/disable their debug counterparts. ........ Merged revisions 374210 from http://svn.asterisk.org/svn/asterisk/branches/10 ........ Merged revisions 374211 from http://svn.asterisk.org/svn/asterisk/branches/11 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@374213 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/message.c')
-rw-r--r--main/message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/message.c b/main/message.c
index f764e2774..83486b890 100644
--- a/main/message.c
+++ b/main/message.c
@@ -1302,7 +1302,7 @@ int ast_msg_tech_unregister(const struct ast_msg_tech *tech)
return 0;
}
-void ast_msg_shutdown()
+void ast_msg_shutdown(void)
{
if (msg_q_tp) {
msg_q_tp = ast_taskprocessor_unreference(msg_q_tp);