diff options
author | PA4WDH | 2024-07-25 17:02:12 +0200 |
---|---|---|
committer | PA4WDH | 2024-07-25 17:02:12 +0200 |
commit | 44bc06a882b9d2f0544de6d033b6ea7334c937d2 (patch) | |
tree | 9ff2978a1a16f0c63564fae8323057e3660fb883 /cputemp2maxfreq.c | |
parent | Add ebuild for version 0.3 (diff) | |
download | cputemp2maxfreq-44bc06a882b9d2f0544de6d033b6ea7334c937d2.tar.gz cputemp2maxfreq-44bc06a882b9d2f0544de6d033b6ea7334c937d2.tar.bz2 cputemp2maxfreq-44bc06a882b9d2f0544de6d033b6ea7334c937d2.zip |
Fix typos
Diffstat (limited to 'cputemp2maxfreq.c')
-rw-r--r-- | cputemp2maxfreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cputemp2maxfreq.c b/cputemp2maxfreq.c index 887a406..597f1e8 100644 --- a/cputemp2maxfreq.c +++ b/cputemp2maxfreq.c @@ -150,7 +150,7 @@ int main(int argc,char **argv) cpudata.cur_temp=sysfs_read_long_int(config.temp_input); if ((cpudata.cur_temp<VALID_TEMP_MIN) || (cpudata.cur_temp>VALID_TEMP_MAX)) { - config.logger("Invalid current tempature reported by CPU, exiting"); + config.logger("Invalid current tempeture reported by CPU, exiting"); failsafe(1); } |