Skip to content

Commit 5b0004d

Browse files
Colin Ian KingAlexei Starovoitov
authored andcommitted
selftest/bpf: Fix spelling mistake "SIGALARM" -> "SIGALRM"
There is a spelling mistake in an error message, fix it. Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Alexei Starovoitov <[email protected]> Acked-by: Yonghong Song <[email protected]> Link: https://lore.kernel.org/bpf/[email protected]
1 parent c70f34a commit 5b0004d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/testing/selftests/bpf/bench.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ static void setup_timer()
242242
last_time_ns = get_time_ns();
243243
err = sigaction(SIGALRM, &sigalarm_action, NULL);
244244
if (err < 0) {
245-
fprintf(stderr, "failed to install SIGALARM handler: %d\n", -errno);
245+
fprintf(stderr, "failed to install SIGALRM handler: %d\n", -errno);
246246
exit(1);
247247
}
248248
timer_settings.it_interval.tv_sec = 1;

0 commit comments

Comments
 (0)