Skip to content

Commit 655f217

Browse files
authored
Merge pull request #48 from stefano-p/fix/no_summary_option
fix: --no-summary not recognized as a valid option
2 parents 909b422 + 11ee395 commit 655f217

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tau/tau.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1178,7 +1178,7 @@ static tau_bool tauCmdLineRead(const int argc, const char* const * const argv) {
11781178
}
11791179

11801180
// Disable Summary
1181-
else if(strncmp(argv[i], summaryStr, strlen(summaryStr))) {
1181+
else if(strncmp(argv[i], summaryStr, strlen(summaryStr)) == 0) {
11821182
tauDisableSummary = 1;
11831183
}
11841184

0 commit comments

Comments
 (0)