diff options
author | David Phillips <david@sighup.nz> | 2017-04-27 17:52:11 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2017-04-27 17:52:11 +1200 |
commit | 9fb243c383bfda8d965be812ded3c8cf123daf7e (patch) | |
tree | e06fff35e86a2ea3cf8a9769a1806041ba973d00 /sand-leek.c | |
parent | 7e539f39c96b157f41e1ae3bf751c40a1fb2a25b (diff) | |
download | sand-leek-9fb243c383bfda8d965be812ded3c8cf123daf7e.tar.xz |
Correct capitalisation on kH
Diffstat (limited to 'sand-leek.c')
-rw-r--r-- | sand-leek.c | 2 |
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); } |