From: Colin Ian King Date: Wed, 27 Mar 2024 11:06:49 +0000 (+0000) Subject: selftests/perf_events: Fix spelling mistake "sycnhronize" -> "synchronize" X-Git-Tag: v6.16-rc1~203^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d4b78df5dc58ba4506e12f1cc92d3bebf0caffa;p=thirdparty%2Fkernel%2Flinux.git selftests/perf_events: Fix spelling mistake "sycnhronize" -> "synchronize" There is a spelling mistake in an error message. Fix it. Link: https://lore.kernel.org/r/20240327110649.283925-1-colin.i.king@gmail.com Signed-off-by: Colin Ian King Acked-by: Kyle Huey Signed-off-by: Shuah Khan --- diff --git a/tools/testing/selftests/perf_events/watermark_signal.c b/tools/testing/selftests/perf_events/watermark_signal.c index 49dc1e8311749..e03fe1b9bba2f 100644 --- a/tools/testing/selftests/perf_events/watermark_signal.c +++ b/tools/testing/selftests/perf_events/watermark_signal.c @@ -75,7 +75,7 @@ TEST(watermark_signal) if (waitpid(child, &child_status, WSTOPPED) != child || !(WIFSTOPPED(child_status) && WSTOPSIG(child_status) == SIGSTOP)) { fprintf(stderr, - "failed to sycnhronize with child errno=%d status=%x\n", + "failed to synchronize with child errno=%d status=%x\n", errno, child_status); goto cleanup;