From: Travis Cross Date: Thu, 29 May 2014 13:21:22 +0000 (+0000) Subject: Add missing parenthesis pair X-Git-Tag: v1.4.5~2^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=17137d089de0e4fb6a81f1137fbc3799a328c493;p=thirdparty%2Ffreeswitch.git Add missing parenthesis pair This would have briefly prevented setting outbound_per_cycle from the mod_fifo config file. --- diff --git a/src/mod/applications/mod_fifo/mod_fifo.c b/src/mod/applications/mod_fifo/mod_fifo.c index 768ed67847..1d48e6f0a3 100644 --- a/src/mod/applications/mod_fifo/mod_fifo.c +++ b/src/mod/applications/mod_fifo/mod_fifo.c @@ -4501,7 +4501,7 @@ static switch_status_t load_config(int reload, int del_all) node->outbound_per_cycle = 1; 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->has_outbound = 1;