From a736af1427a051c669a54cc408395f27ca3c0cce Mon Sep 17 00:00:00 2001 From: Nakidai Date: Sat, 30 Aug 2025 20:49:37 +0300 Subject: Now SAMI_kill returns 0 on success --- sami.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sami.c b/sami.c index 80bda70..b07c3aa 100644 --- a/sami.c +++ b/sami.c @@ -108,6 +108,7 @@ int SAMI_kill(SAMI *actor) if (actor->pid == -1 || kill(actor->pid, SIGKILL)) return 1; + return 0; } SAMI *SAMI_parent(void) -- cgit 1.4.1