Skip to content

Commit

Permalink
fixed comparison error for ubunto 14.04 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Hrick87 committed Nov 11, 2023
1 parent e199c57 commit a38f62e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal_modules/roc_address/protocol_map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ bool ProtocolMap::get_supported_interfaces(core::Array<Interface>& 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);
Expand Down

0 comments on commit a38f62e

Please sign in to comment.