Skip to content

Commit

Permalink
fix: --no-summary option not recognized.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefano-p committed Nov 12, 2024
1 parent 27de906 commit 11ee395
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 @@ -1077,7 +1077,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 11ee395

Please sign in to comment.