From de9018166d282427b8bb9e3d7d521c589d85bf71 Mon Sep 17 00:00:00 2001 From: Srivats P Date: Thu, 9 Jun 2022 15:11:55 +0530 Subject: [PATCH] Remove extra braces --- server/abstractport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/abstractport.cpp b/server/abstractport.cpp index 46a2558..7d2f7c0 100644 --- a/server/abstractport.cpp +++ b/server/abstractport.cpp @@ -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; }