From: Colin Ian King Date: Thu, 14 May 2020 12:15:29 +0000 (+0100) Subject: selftest/bpf: Fix spelling mistake "SIGALARM" -> "SIGALRM" X-Git-Tag: v5.8-rc1~165^2~185^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5b0004d92b4511c39db0df23aa84395722f1d706;p=thirdparty%2Fkernel%2Flinux.git selftest/bpf: Fix spelling mistake "SIGALARM" -> "SIGALRM" There is a spelling mistake in an error message, fix it. Signed-off-by: Colin Ian King Signed-off-by: Alexei Starovoitov Acked-by: Yonghong Song Link: https://lore.kernel.org/bpf/20200514121529.259668-1-colin.king@canonical.com --- diff --git a/tools/testing/selftests/bpf/bench.c b/tools/testing/selftests/bpf/bench.c index 8c0dfbfe60885..14390689ef908 100644 --- a/tools/testing/selftests/bpf/bench.c +++ b/tools/testing/selftests/bpf/bench.c @@ -242,7 +242,7 @@ static void setup_timer() last_time_ns = get_time_ns(); err = sigaction(SIGALRM, &sigalarm_action, NULL); if (err < 0) { - fprintf(stderr, "failed to install SIGALARM handler: %d\n", -errno); + fprintf(stderr, "failed to install SIGALRM handler: %d\n", -errno); exit(1); } timer_settings.it_interval.tv_sec = 1;