From 24a20f07ac5ae9f743ff0c9692522b0a542d9c7f Mon Sep 17 00:00:00 2001 From: Andrew D Smith Date: Sat, 30 Sep 2023 17:40:12 -0700 Subject: [PATCH] Fixes 156: moving exit statement on insufficient data out of the check for verbose mode --- src/analysis/pmd.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/analysis/pmd.cpp b/src/analysis/pmd.cpp index 0657db06..32b08f2a 100644 --- a/src/analysis/pmd.cpp +++ b/src/analysis/pmd.cpp @@ -1265,10 +1265,9 @@ main_pmd(int argc, const char **argv) { if (insufficient_data) { // ADS: first check for insufficient data; another is needed if // fixed bin size is used - if (VERBOSE) { + if (VERBOSE) cerr << "EXITING: INSUFFICIENT DATA" << endl; - return EXIT_SUCCESS; - } + return EXIT_SUCCESS; } if (VERBOSE)