Skip to content

Commit

Permalink
Merge pull request #48 from stefano-p/fix/no_summary_option
Browse files Browse the repository at this point in the history
fix: --no-summary not recognized as a valid option
  • Loading branch information
jasmcaus authored Nov 12, 2024
2 parents 909b422 + 11ee395 commit 655f217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tau/tau.h
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@ static tau_bool tauCmdLineRead(const int argc, const char* const * const argv) {
}

// Disable Summary
else if(strncmp(argv[i], summaryStr, strlen(summaryStr))) {
else if(strncmp(argv[i], summaryStr, strlen(summaryStr)) == 0) {
tauDisableSummary = 1;
}

Expand Down

0 comments on commit 655f217

Please sign in to comment.