Commit 9d4b78df authored by Colin Ian King's avatar Colin Ian King Committed by Shuah Khan
Browse files

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: default avatarColin Ian King <colin.i.king@gmail.com>
Acked-by: default avatarKyle Huey <khuey@kylehuey.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent b4432656
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;