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…
Reference in New Issue