Remove extra braces

This commit is contained in:
Srivats P 2022-06-09 15:11:55 +05:30
parent c0d860b92d
commit de9018166d

View File

@ -578,7 +578,7 @@ int AbstractPort::updatePacketListInterleaved()
// i.e. send all streams "simultaneously" as fast as possible
// as a result all streams will be at the same rate e.g. for 2 streams,
// it would 50% each; for 3 streams - all at 33.3% and so on
if ((minGap == ULLONG_MAX)) {
if (minGap == ULLONG_MAX) {
minGap = 1;
duration = 1;
}