Fix declaration of variable already declared in outer scope

master
jcdr428 2022-05-03 18:11:30 +00:00
parent 59eea9fc93
commit 99ff83e815
1 changed files with 3 additions and 3 deletions

View File

@ -345,10 +345,10 @@ void MuxerManager::parseMuxOpt(const string& opts)
{
uint64_t coeff = 1;
string postfix;
for (auto i : paramPair[1])
for (auto j : paramPair[1])
{
if (!((i >= '0' && i <= '9') || i == '.'))
postfix += i;
if (!((j >= '0' && j <= '9') || j == '.'))
postfix += j;
}
postfix = strToUpperCase(postfix);