提交 17137d08 authored 作者: Travis Cross's avatar Travis Cross

Add missing parenthesis pair

This would have briefly prevented setting outbound_per_cycle from the
mod_fifo config file.
上级 84fe7b07
......@@ -4501,7 +4501,7 @@ static switch_status_t load_config(int reload, int del_all)
node->outbound_per_cycle = 1;
if ((val = switch_xml_attr(fifo, "outbound_per_cycle"))) {
if (!(i = atoi(val)) < 0) {
if (!((i = atoi(val)) < 0)) {
node->outbound_per_cycle = i;
}
node->has_outbound = 1;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论