summaryrefslogtreecommitdiffstats
path: root/solaris
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2020-09-07 12:24:32 +0200
committercgzones <cgzones@googlemail.com>2020-09-24 18:06:36 +0200
commit3c65d78d77e43de12284417012fad2d8c195770e (patch)
tree77854c971c13784e9e734aecc1aaf5213fc8f98c /solaris
parentebcf92464353d44c1d01b5afd286314415a66c96 (diff)
Update CPU freq display to use NAN on error
Diffstat (limited to 'solaris')
-rw-r--r--solaris/Platform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/solaris/Platform.c b/solaris/Platform.c
index 436c9ce9..d3ad1f93 100644
--- a/solaris/Platform.c
+++ b/solaris/Platform.c
@@ -186,7 +186,7 @@ double Platform_setCPUValues(Meter* this, int cpu) {
percent = CLAMP(percent, 0.0, 100.0);
if (isnan(percent)) percent = 0.0;
- v[CPU_METER_FREQUENCY] = -1;
+ v[CPU_METER_FREQUENCY] = NAN;
return percent;
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy