Skip to content

Commit ed1fae8

Browse files
authored
Merge pull request #2025 from l2dy/dialplan
dialplan: fix null printf
2 parents fb21682 + b04d537 commit ed1fae8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/dialplan/dialplan.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ static int dp_create_head(str part_desc)
288288
part_desc.len + part_desc.s - start);
289289

290290
if (param_value.s == 0) {
291-
LM_ERR("[[%s]]!\n", param_value.s);
291+
LM_ERR("failed to locate '%c' separator in 'partition' string\n", DP_CHAR_EQUAL);
292292
goto out_err;
293293
}
294294

0 commit comments

Comments
 (0)