Skip to content

Commit

Permalink
BUG FIX: Version was compared against opNone.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdnahas committed May 15, 2019
1 parent c7ca9e1 commit fa37802
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/par2cmdline.cpp
Expand Up @@ -117,14 +117,16 @@ int main(int argc, char *argv[])
commandline->GetSkipData(),
commandline->GetSkipLeaway());
break;
case CommandLine::opNone:
default:
break;
}
}
break;
case CommandLine::opNone:
result = eSuccess;
break;
default:
break;
}
}

Expand Down

0 comments on commit fa37802

Please sign in to comment.