From 17137d089de0e4fb6a81f1137fbc3799a328c493 Mon Sep 17 00:00:00 2001
From: Travis Cross <tc@traviscross.com>
Date: Thu, 29 May 2014 13:21:22 +0000
Subject: [PATCH] Add missing parenthesis pair

This would have briefly prevented setting outbound_per_cycle from the
mod_fifo config file.
---
 src/mod/applications/mod_fifo/mod_fifo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;