Skip to content

Commit

Permalink
CoinBronKerbosch: Fix format string (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
a-andre authored Aug 28, 2024
1 parent 81c370f commit 5885a2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CoinBronKerbosch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ void CoinBronKerbosch::computeFitness(const double *weights) {
break;
}
default:
fprintf(stderr, "Invalid option %lu for pivoting strategy!\n", pivotingStrategy_);
fprintf(stderr, "Invalid option %u for pivoting strategy!\n", pivotingStrategy_);
abort();
}
}
Expand Down

0 comments on commit 5885a2e

Please sign in to comment.