Skip to content

Commit

Permalink
fix build error for arm platform
Browse files Browse the repository at this point in the history
  • Loading branch information
shuaishang committed Nov 6, 2024
1 parent 6b87876 commit afc1311
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion orchagent/routeorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ void RouteOrch::doTask(Consumer& consumer)
NextHopGroupKey& nhg = ctx.nhg;
vector<string> srv6_segv;
vector<string> srv6_src;
vector<string> srv6_vpn_sidv;
vector<string> srv6_vpn_sidv;
bool l3Vni = true;
uint32_t vni = 0;

Expand Down
2 changes: 1 addition & 1 deletion orchagent/srv6orch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1558,7 +1558,7 @@ task_process_status Srv6Orch::doTaskPicContextTable(const KeyOpFieldsValuesTuple
}
if (pci.nexthops.size() != pci.sids.size())
{
SWSS_LOG_ERROR("inconsistent number of endpoints(%lu) and vpn sids(%lu)",
SWSS_LOG_ERROR("inconsistent number of endpoints(%zu) and vpn sids(%zu)",
pci.nexthops.size(), pci.sids.size());
return task_failed;
}
Expand Down

0 comments on commit afc1311

Please sign in to comment.