diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2022-10-27 09:20:17 +0100 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2022-10-27 02:53:37 -0600 |
commit | ecc7d67af402dda4b4d353dfa9837339319c9d4d (patch) | |
tree | 17ecfcf93d873041316a390b6c53b8fb9ff3f51a | |
parent | ec7b4511185bba95fc702c33a388582c8842d454 (diff) | |
download | linux-ecc7d67af402dda4b4d353dfa9837339319c9d4d.tar.gz linux-ecc7d67af402dda4b4d353dfa9837339319c9d4d.tar.bz2 linux-ecc7d67af402dda4b4d353dfa9837339319c9d4d.zip |
selftests/watchdog: Fix spelling mistake "Temeprature" -> "Temperature"
There is a spelling mistake in a print statement. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
-rw-r--r-- | tools/testing/selftests/watchdog/watchdog-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/watchdog/watchdog-test.c b/tools/testing/selftests/watchdog/watchdog-test.c index fb3ca67785c2..bc71cbca0dde 100644 --- a/tools/testing/selftests/watchdog/watchdog-test.c +++ b/tools/testing/selftests/watchdog/watchdog-test.c @@ -260,7 +260,7 @@ int main(int argc, char *argv[]) if (ret) printf("WDIOC_GETTEMP: '%s'\n", strerror(errno)); else - printf("Temeprature: %d\n", temperature); + printf("Temperature %d\n", temperature); break; case 't': |