[asterisk-commits] kmoore: branch 12 r412034 - /branches/12/res/res_stasis_answer.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Apr 9 13:16:15 CDT 2014


Author: kmoore
Date: Wed Apr  9 13:16:08 2014
New Revision: 412034

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=412034
Log:
res_stasis_answer: Add missing newlines

Modified:
    branches/12/res/res_stasis_answer.c

Modified: branches/12/res/res_stasis_answer.c
URL: http://svnview.digium.com/svn/asterisk/branches/12/res/res_stasis_answer.c?view=diff&rev=412034&r1=412033&r2=412034
==============================================================================
--- branches/12/res/res_stasis_answer.c (original)
+++ branches/12/res/res_stasis_answer.c Wed Apr  9 13:16:08 2014
@@ -39,7 +39,7 @@
 	struct ast_channel *chan, void *data)
 {
 	const int delay = 0;
-	ast_debug(3, "%s: Answering",
+	ast_debug(3, "%s: Answering\n",
 		stasis_app_control_get_channel_id(control));
 	return __ast_answer(chan, delay);
 }
@@ -54,7 +54,7 @@
 	retval = stasis_app_send_command(control, app_control_answer, NULL);
 
 	if (retval != 0) {
-		ast_log(LOG_WARNING, "%s: Failed to answer channel",
+		ast_log(LOG_WARNING, "%s: Failed to answer channel\n",
 			stasis_app_control_get_channel_id(control));
 		return -1;
 	}




More information about the asterisk-commits mailing list