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 caused the importance value in the fifo config file to be ignored.
This commit is contained in:
parent
50dfce2845
commit
bf59d57dab
@ -4481,7 +4481,7 @@ static switch_status_t load_config(int reload, int del_all)
|
||||
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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user