summaryrefslogtreecommitdiff
path: root/res/parking
diff options
context:
space:
mode:
authorMatt Jordan <mjordan@digium.com>2015-07-16 20:34:05 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2015-07-16 20:34:05 -0500
commitaf9ee2910d4f791243fa9c6ef98dd53264acc445 (patch)
tree25d657b4037254b2e028df00c28cdbc72c389a5b /res/parking
parentf99322ab2175af61a5c1eda2b20bed58ef889590 (diff)
parent097c15ac519bbc78f161228a96708371dd077747 (diff)
Merge "parking_applications.c: Fix ast_verb() line terminator."
Diffstat (limited to 'res/parking')
-rw-r--r--res/parking/parking_applications.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/res/parking/parking_applications.c b/res/parking/parking_applications.c
index 7ce8a3215..34b081bb2 100644
--- a/res/parking/parking_applications.c
+++ b/res/parking/parking_applications.c
@@ -361,7 +361,9 @@ static int setup_park_common_datastore(struct ast_channel *parkee, const char *p
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);
}