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:
Travis Cross 2014-05-29 13:06:35 +00:00
parent 50dfce2845
commit bf59d57dab
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}