Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <colin.i.king@gmail.com>
Acked-by: Kyle Huey <khuey@kylehuey.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

authored by

Colin Ian King and committed by
Shuah Khan
9d4b78df b4432656

+1 -1
+1 -1
tools/testing/selftests/perf_events/watermark_signal.c
··· 75 75 if (waitpid(child, &child_status, WSTOPPED) != child || 76 76 !(WIFSTOPPED(child_status) && WSTOPSIG(child_status) == SIGSTOP)) { 77 77 fprintf(stderr, 78 - "failed to sycnhronize with child errno=%d status=%x\n", 78 + "failed to synchronize with child errno=%d status=%x\n", 79 79 errno, 80 80 child_status); 81 81 goto cleanup;