Skip to content

Commit 17c6851

Browse files
committed
linter fix: avoid magic number
1 parent dae9dbf commit 17c6851

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGHF/D2H/Macros/runMassFitter.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ void divideCanvas(TCanvas* canvas, int nSliceVarBins)
676676

677677
int main(int argc, char* argv[])
678678
{
679-
if (argc < 2) {
679+
if (argc == 1) {
680680
throw std::runtime_error("Not enough arguments. Please use\n./runMassFitter configFileName");
681681
}
682682

0 commit comments

Comments
 (0)