From 20caceee5d3623d5a5108eb03828c826ffb784f6 Mon Sep 17 00:00:00 2001 From: WHR Date: Tue, 10 Jun 2025 11:38:25 +0800 Subject: [PATCH] Correct unit prefix symbol for unit 'kilohash per second' --- src/log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/log.h b/src/log.h index a18a630..4b27472 100644 --- a/src/log.h +++ b/src/log.h @@ -344,7 +344,7 @@ template<> struct log::Stream::Entry const double x = static_cast(value.m_data); - static constexpr const char* units[] = { "H/s", "KH/s", "MH/s", "GH/s", "TH/s", "PH/s", "EH/s" }; + static constexpr const char* units[] = { "H/s", "kH/s", "MH/s", "GH/s", "TH/s", "PH/s", "EH/s" }; int n; char buf[32];