Skip to content

Commit

Permalink
Fix report command line options for the scanner
Browse files Browse the repository at this point in the history
  • Loading branch information
romw committed Feb 9, 2022
1 parent 1d686c3 commit 07fbb55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MainScan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,9 @@ int32_t ProcessCommandLineOptions(int32_t argc, wchar_t* argv[]) {
cmdline_options.report = true;
} else if (ARG(report_pretty)) {
cmdline_options.no_logo = true;
cmdline_options.report = true;
cmdline_options.reportPretty = true;
} else if (ARG(report_sig)) {
cmdline_options.no_logo = true;
cmdline_options.report = true;
cmdline_options.reportSig = true;
} else if (ARG(nologo)) {
cmdline_options.no_logo = true;
Expand Down Expand Up @@ -358,7 +356,9 @@ int32_t __cdecl wmain(int32_t argc, wchar_t* argv[]) {
}
wprintf(L"\n");
}
wprintf(L"\n");
if (!cmdline_options.no_logo) {
wprintf(L"\n");
}

//
// Scan Started
Expand Down

0 comments on commit 07fbb55

Please sign in to comment.