selftests/perf_events: Fix spelling mistake "sycnhronize" -> "synchronize"
authorColin Ian King <colin.i.king@gmail.com>
Wed, 27 Mar 2024 11:06:49 +0000 (11:06 +0000)
committerShuah Khan <skhan@linuxfoundation.org>
Tue, 29 Apr 2025 19:35:55 +0000 (13:35 -0600)
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 <colin.i.king@gmail.com>
Acked-by: Kyle Huey <khuey@kylehuey.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/perf_events/watermark_signal.c

index 49dc1e83117493c14bdce5dc1d89fd73bd158e38..e03fe1b9bba2f803cad086a609bb7b1d2eee851c 100644 (file)
@@ -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;