From d10498f2b3164d2c23da9b35b6909337add33b27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20K=C3=BCch?= Date: Fri, 25 Sep 2020 15:24:16 +0200 Subject: [PATCH] Change actual to current --- smc-command/README | 2 +- smc-command/smc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/smc-command/README b/smc-command/README index dd5a830..c9adba5 100644 --- a/smc-command/README +++ b/smc-command/README @@ -42,7 +42,7 @@ To manually query and control: FNum - tells you how many fans are in the system To read data from each fan: -F0Ac - Fan actual speed +F0Ac - Fan current speed F0Mn - Fan minimum speed F0Mx - Fan maximum speed F0Sf - Fan safe speed diff --git a/smc-command/smc.c b/smc-command/smc.c index 379c71d..0e03339 100755 --- a/smc-command/smc.c +++ b/smc-command/smc.c @@ -564,7 +564,7 @@ kern_return_t SMCPrintFans(void) } sprintf(key, "F%cAc", fannum[i]); SMCReadKey(key, &val); - printf(" Actual speed : %.0f\n", getFloatFromVal(val)); + printf(" Current speed : %.0f\n", getFloatFromVal(val)); sprintf(key, "F%cMn", fannum[i]); SMCReadKey(key, &val); printf(" Minimum speed: %.0f\n", getFloatFromVal(val));