Skip to content

Commit

Permalink
Fixed gcc extension causing BB on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikołaj Małecki committed Feb 22, 2024
1 parent 432b0c7 commit f416392
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions srtcore/group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5466,8 +5466,8 @@ CUDTGroup::gli_t CUDTGroup::linkSelect_window(const CUDTGroup::BalancingLinkStat
flight += 2; // prevent having 0 used for equations

total_flight += flight;

linkdata.push_back( (LinkCapableData){li, flight} );
LinkCapableData lcd = {li, flight};
linkdata.push_back(lcd);
}

if (linkdata.empty())
Expand Down

0 comments on commit f416392

Please sign in to comment.