summaryrefslogtreecommitdiff
path: root/funcs
diff options
context:
space:
mode:
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_channel.c2
-rw-r--r--funcs/func_strings.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/funcs/func_channel.c b/funcs/func_channel.c
index 80d57ded1..37b34d738 100644
--- a/funcs/func_channel.c
+++ b/funcs/func_channel.c
@@ -466,7 +466,7 @@ static int func_channel_write_real(struct ast_channel *chan, const char *functio
ret = ast_channel_trace_disable(chan);
else {
ret = -1;
- ast_log(LOG_WARNING, "Invalid value for CHANNEL(trace).");
+ ast_log(LOG_WARNING, "Invalid value for CHANNEL(trace).\n");
}
ast_channel_unlock(chan);
}
diff --git a/funcs/func_strings.c b/funcs/func_strings.c
index 18de20226..5bf687b52 100644
--- a/funcs/func_strings.c
+++ b/funcs/func_strings.c
@@ -1228,7 +1228,7 @@ static int quote(struct ast_channel *chan, const char *cmd, char *data, char *bu
char *bufptr = buf, *dataptr = data;
if (len < 3){ /* at least two for quotes and one for binary zero */
- ast_log(LOG_ERROR, "Not enough buffer");
+ ast_log(LOG_ERROR, "Not enough buffer\n");
return -1;
}
@@ -1267,7 +1267,7 @@ static int csv_quote(struct ast_channel *chan, const char *cmd, char *data, char
char *bufptr = buf, *dataptr = data;
if (len < 3) { /* at least two for quotes and one for binary zero */
- ast_log(LOG_ERROR, "Not enough buffer");
+ ast_log(LOG_ERROR, "Not enough buffer\n");
return -1;
}