Message ID | 20240613073429.1797451-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [next] kselftest/arm64: Fix a couple of spelling mistakes | expand |
On Thu, Jun 13, 2024 at 08:34:29AM +0100, Colin Ian King wrote: > There are two spelling mistakes in some error messages. Fix them. Reviewed-by: Mark Brown <broonie@kernel.org>
On Thu, 13 Jun 2024 08:34:29 +0100, Colin Ian King wrote: > There are two spelling mistakes in some error messages. Fix them. > > Applied to arm64 (for-next/kselftest), thanks! [1/1] kselftest/arm64: Fix a couple of spelling mistakes https://git.kernel.org/arm64/c/963c5d496822
diff --git a/tools/testing/selftests/arm64/fp/kernel-test.c b/tools/testing/selftests/arm64/fp/kernel-test.c index 50db26a3ed79..e8da3b4cbd23 100644 --- a/tools/testing/selftests/arm64/fp/kernel-test.c +++ b/tools/testing/selftests/arm64/fp/kernel-test.c @@ -233,7 +233,7 @@ static bool compute_digest(void *buf) reread: ret = recv(sock, buf, digest_len, 0); if (ret == 0) { - printf("No disgest returned\n"); + printf("No digest returned\n"); return false; } if (ret != digest_len) { @@ -308,7 +308,7 @@ int main(void) while (true) { if (!compute_digest(digest)) { - printf("Failed to coempute digest, iter=%d\n", iter); + printf("Failed to compute digest, iter=%d\n", iter); return EXIT_FAILURE; }
There are two spelling mistakes in some error messages. Fix them. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- tools/testing/selftests/arm64/fp/kernel-test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)