From a38f62e6016246a6eb162a281150474ccf5da569 Mon Sep 17 00:00:00 2001 From: Hunter Rick Date: Fri, 10 Nov 2023 20:09:18 -0800 Subject: [PATCH] fixed comparison error for ubunto 14.04 compatibility --- src/internal_modules/roc_address/protocol_map.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal_modules/roc_address/protocol_map.cpp b/src/internal_modules/roc_address/protocol_map.cpp index e2d10a49f..7e345e3e5 100644 --- a/src/internal_modules/roc_address/protocol_map.cpp +++ b/src/internal_modules/roc_address/protocol_map.cpp @@ -133,7 +133,7 @@ bool ProtocolMap::get_supported_interfaces(core::Array& interface_arr interface_array.clear(); bool interfaces_exist = false; - for (size_t x = Iface_Consolidated + 1; x != Iface_Max; x++) { + for (int x = Iface_Consolidated + 1; x != Iface_Max; x++) { for (size_t y = 0; y < MaxProtos; y++) { if (x == protos_[y].iface) { interface_array.push_back(protos_[y].iface);