[asterisk-commits] parking applications.c: Fix ast verb() line terminator. (asterisk[master])

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Jul 16 20:34:05 CDT 2015


Matt Jordan has submitted this change and it was merged.

Change subject: parking_applications.c: Fix ast_verb() line terminator.
......................................................................


parking_applications.c: Fix ast_verb() line terminator.

Change-Id: I8797238c71563e243c48c6145b4f1ae58f91f775
---
M res/parking/parking_applications.c
1 file changed, 3 insertions(+), 1 deletion(-)

Approvals:
  Mark Michelson: Looks good to me, but someone else must approve
  Anonymous Coward #1000019: Verified
  Matt Jordan: Looks good to me, approved



diff --git a/res/parking/parking_applications.c b/res/parking/parking_applications.c
index 5077474..4ef2e64 100644
--- a/res/parking/parking_applications.c
+++ b/res/parking/parking_applications.c
@@ -357,7 +357,9 @@
 
 	if (!ast_strlen_zero(parker_dial_string)) {
 		ast_channel_name_to_dial_string(parker_dial_string);
-		ast_verb(4, "Setting Parker dial string to %s from %s value", parker_dial_string, attended_transfer ? "ATTENDEDTRANSFER" : "BLINDTRANSFER");
+		ast_verb(4, "Setting Parker dial string to %s from %s value\n",
+			parker_dial_string,
+			attended_transfer ? "ATTENDEDTRANSFER" : "BLINDTRANSFER");
 		park_datastore->parker_dial_string = ast_strdup(parker_dial_string);
 	}
 

-- 
To view, visit https://gerrit.asterisk.org/917
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I8797238c71563e243c48c6145b4f1ae58f91f775
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>
Gerrit-Reviewer: Anonymous Coward #1000019
Gerrit-Reviewer: Mark Michelson <mmichelson at digium.com>
Gerrit-Reviewer: Matt Jordan <mjordan at digium.com>



More information about the asterisk-commits mailing list