mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-09 09:17:34 +00:00
Add missing parenthesis pair
This would have briefly prevented setting outbound_per_cycle from the mod_fifo config file.
This commit is contained in:
parent
84fe7b0794
commit
17137d089d
@ -4501,7 +4501,7 @@ static switch_status_t load_config(int reload, int del_all)
|
|||||||
|
|
||||||
node->outbound_per_cycle = 1;
|
node->outbound_per_cycle = 1;
|
||||||
if ((val = switch_xml_attr(fifo, "outbound_per_cycle"))) {
|
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->outbound_per_cycle = i;
|
||||||
}
|
}
|
||||||
node->has_outbound = 1;
|
node->has_outbound = 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user