[asterisk-commits] mjordan: branch 10 r374210 - /branches/10/main/message.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Oct 2 12:10:09 CDT 2012
Author: mjordan
Date: Tue Oct 2 12:10:04 2012
New Revision: 374210
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=374210
Log:
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 11+) can use the ao2_t_* variants
of the functions to allow the REF_DEBUG flag to enable/disable their debug
counterparts.
Modified:
branches/10/main/message.c
Modified: branches/10/main/message.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/main/message.c?view=diff&rev=374210&r1=374209&r2=374210
==============================================================================
--- branches/10/main/message.c (original)
+++ branches/10/main/message.c Tue Oct 2 12:10:04 2012
@@ -1113,7 +1113,7 @@
return 0;
}
-void ast_msg_shutdown()
+void ast_msg_shutdown(void)
{
if (msg_q_tp) {
msg_q_tp = ast_taskprocessor_unreference(msg_q_tp);
More information about the asterisk-commits
mailing list