summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2014-04-09 18:17:01 +0000
committerKinsey Moore <kmoore@digium.com>2014-04-09 18:17:01 +0000
commitc613ef6b308cbb18a4eea0549b797ecba6e1094b (patch)
tree6f49b1b544af453f091edb82ac3c1c59624c1615 /res
parent5ca5d426469218a269e37e606bb3beda137d1815 (diff)
res_stasis_answer: Add missing newlines
........ Merged revisions 412034 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@412035 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rw-r--r--res/res_stasis_answer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_stasis_answer.c b/res/res_stasis_answer.c
index bc7d2fba3..02dfab95e 100644
--- a/res/res_stasis_answer.c
+++ b/res/res_stasis_answer.c
@@ -39,7 +39,7 @@ static int app_control_answer(struct stasis_app_control *control,
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 @@ int stasis_app_control_answer(struct stasis_app_control *control)
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;
}