aboutsummaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
Diffstat (limited to 'host')
-rw-r--r--host/include/uhd/rfnoc/node_ctrl_base.ipp5
1 files changed, 3 insertions, 2 deletions
diff --git a/host/include/uhd/rfnoc/node_ctrl_base.ipp b/host/include/uhd/rfnoc/node_ctrl_base.ipp
index 0a9553b6d..80dadfcf9 100644
--- a/host/include/uhd/rfnoc/node_ctrl_base.ipp
+++ b/host/include/uhd/rfnoc/node_ctrl_base.ipp
@@ -85,8 +85,9 @@ namespace uhd {
// map each input port directly to the same output
// port. This limits the graph traversal to prevent
// finding nodes that are not part of this chain.
- if (one_next_node->_num_input_ports ==
- one_next_node->_num_output_ports)
+ if (one_next_node->_num_input_ports
+ and (one_next_node->_num_input_ports ==
+ one_next_node->_num_output_ports))
{
next_port = (downstream ?
node->get_downstream_port(connected_port) :