From 16f409c6a9d84035e615fb76f3404a84167c11cb Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Tue, 21 Nov 2023 21:51:56 -0600 Subject: [PATCH] Typo for SIGALARM in os/proc-kill --- src/core/os.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/os.c b/src/core/os.c index 425e6e73..a3ee2fe2 100644 --- a/src/core/os.c +++ b/src/core/os.c @@ -640,7 +640,7 @@ static const struct keyword_signal signal_keywords[] = { #ifdef SIGTERM {"term", SIGTERM}, #endif -#ifdef SIGARLM +#ifdef SIGALRM {"alrm", SIGALRM}, #endif #ifdef SIGHUP