aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/benchmark.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/benchmark.cpp')
-rw-r--r--doc/examples/benchmark.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/benchmark.cpp b/doc/examples/benchmark.cpp
index 006450314..7ad1775e2 100644
--- a/doc/examples/benchmark.cpp
+++ b/doc/examples/benchmark.cpp
@@ -33,7 +33,7 @@ int main(int argc, char* argv[])
std::string algo = argv[i];
std::map<std::string, double> results =
- Botan::algorithm_benchmark(algo, ms, rng, af);
+ algorithm_benchmark(algo, af, rng, ms, 16*1024);
std::cout << algo << ":\n";
for(std::map<std::string, double>::iterator r = results.begin();