From: Matthew Jordan Date: Fri, 22 Aug 2014 14:09:07 +0000 (+0000) Subject: main/message: Add a new-line to a DEBUG message X-Git-Tag: 14.0.0-beta1~1716 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1498ae0830d946a9b8185131d510b1b864fd3d11;p=thirdparty%2Fasterisk.git main/message: Add a new-line to a DEBUG message ........ Merged revisions 421859 from http://svn.asterisk.org/svn/asterisk/branches/12 ........ Merged revisions 421860 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@421861 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/message.c b/main/message.c index 836c4e70bb..cf4ee2b70b 100644 --- a/main/message.c +++ b/main/message.c @@ -869,7 +869,7 @@ static int msg_q_cb(void *data) continue; } - ast_debug(5, "Dispatching message to %s handler", handler->name); + ast_debug(5, "Dispatching message to %s handler\n", handler->name); res &= handler->handle_msg(msg); } ast_rwlock_unlock(&msg_handlers_lock);