aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2017-04-27 17:52:11 +1200
committerDavid Phillips <david@sighup.nz>2017-04-27 17:52:11 +1200
commit9fb243c383bfda8d965be812ded3c8cf123daf7e (patch)
treee06fff35e86a2ea3cf8a9769a1806041ba973d00
parent7e539f39c96b157f41e1ae3bf751c40a1fb2a25b (diff)
downloadsand-leek-9fb243c383bfda8d965be812ded3c8cf123daf7e.tar.xz
Correct capitalisation on kH
-rw-r--r--sand-leek.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sand-leek.c b/sand-leek.c
index c199934..20a545c 100644
--- a/sand-leek.c
+++ b/sand-leek.c
@@ -190,7 +190,7 @@ main(int argc, char **argv) {
for (i = 0; i < thread_count; i++) {
khashes += khash_count[i];
}
- printf("Average rate: %.2f kH/s (%.2f KH/s/thread)\n",
+ printf("Average rate: %.2f kH/s (%.2f kH/s/thread)\n",
(double)khashes / loops,
((double)khashes / loops) / thread_count);
}