提交 bf59d57d authored 作者: Travis Cross's avatar Travis Cross

Add missing parenthesis pair

This would have briefly caused the importance value in the fifo config
file to be ignored.
上级 50dfce28
...@@ -4481,7 +4481,7 @@ static switch_status_t load_config(int reload, int del_all) ...@@ -4481,7 +4481,7 @@ static switch_status_t load_config(int reload, int del_all)
continue; continue;
} }
if ((val = switch_xml_attr(fifo, "importance")) && !(i = atoi(val)) < 0) { if ((val = switch_xml_attr(fifo, "importance")) && !((i = atoi(val)) < 0)) {
importance = i; importance = i;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论