aboutsummaryrefslogtreecommitdiffstats
path: root/checks
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-30 20:50:32 +0000
committerlloyd <[email protected]>2008-09-30 20:50:32 +0000
commita2c9be1a6bf801aac4d6d32759d51608f536d14a (patch)
tree5399a78b828287bee5faf0a9c5bb81ebeea4f568 /checks
parent635ad412344dfecf823422f14d880f4b59d11f9d (diff)
s/Mbyte/MiB/ to be precise about meaning (2^20 bytes/second)
Diffstat (limited to 'checks')
-rw-r--r--checks/bench.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/checks/bench.cpp b/checks/bench.cpp
index f05bf8848..81a6a96d1 100644
--- a/checks/bench.cpp
+++ b/checks/bench.cpp
@@ -67,7 +67,7 @@ double bench_filter(std::string name, Botan::Filter* filter,
{
std::cout << name << ": " << std::string(25 - name.length(), ' ');
std::cout.width(6);
- std::cout << mbytes_per_sec << " Mbytes/sec" << std::endl;
+ std::cout << mbytes_per_sec << " MiB/sec" << std::endl;
}
return (mbytes_per_sec);
}
@@ -109,7 +109,7 @@ void benchmark(const std::string& what,
<< "<P><TABLE BORDER CELLSPACING=1>\n"
<< "<THEAD>\n"
<< "<TR><TH>Algorithm "
- << "<TH>Mbytes / second\n"
+ << "<TH>Mib / second\n"
<< "<TBODY>\n";
}