summaryrefslogtreecommitdiff
path: root/channels/chan_dahdi.c
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2011-04-01 17:28:33 +0000
committerJonathan Rose <jrose@digium.com>2011-04-01 17:28:33 +0000
commit759bf6b84085fbd331a0f632f0c65477b0ff4496 (patch)
tree6c1228d5a637f1ce883d29a9d3ed4e6ef8286da5 /channels/chan_dahdi.c
parent846cfa0ef048c6c1e0830183d1ee063b9757d53e (diff)
Fixing bad line break from 312384
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@312423 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_dahdi.c')
-rw-r--r--channels/chan_dahdi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index 1e10d4e94..3f1d9e051 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -16666,7 +16666,8 @@ static void parse_busy_pattern(struct ast_variable *v, struct ast_dsp_busy_patte
for (; ;) {
/* Scans the string for the next value in the pattern. If none, it checks to see if any have been entered so far. */
- if(!sscanf(v->value, "%30d", &norval) && count_pattern == 0) { ast_log(LOG_ERROR, "busypattern= expects either busypattern=tonelength,quietlength or busypattern=t1length, q1length, t2length, q2length at line %d.\n", v->lineno);
+ if(!sscanf(v->value, "%30d", &norval) && count_pattern == 0) {
+ ast_log(LOG_ERROR, "busypattern= expects either busypattern=tonelength,quietlength or busypattern=t1length, q1length, t2length, q2length at line %d.\n", v->lineno);
break;
}