Skip to content
This repository was archived by the owner on Jan 14, 2020. It is now read-only.

Commit

Permalink
res_stasis_answer: Add missing newlines
Browse files Browse the repository at this point in the history
........

Merged revisions 412034 from http://svn.asterisk.org/svn/asterisk/branches/12


git-svn-id: http://svn.asterisk.org/svn/asterisk/trunk@412035 f38db490-d61c-443f-a65b-d21fe96a405b
  • Loading branch information
Kinsey Moore committed Apr 9, 2014
1 parent a68d4eb commit 9b21c72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions res/res_stasis_answer.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand All @@ -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;
}
Expand Down

0 comments on commit 9b21c72

Please sign in to comment.