From 46bc99ed3a28461a581151b9fd6b2e4ff35b34f9 Mon Sep 17 00:00:00 2001 From: jewelcodes Date: Fri, 8 Nov 2024 18:07:48 -0500 Subject: [PATCH] ipc: fixed invocation to match prototype --- src/ipc/signal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ipc/signal.c b/src/ipc/signal.c index daed4771..4dc6cc19 100644 --- a/src/ipc/signal.c +++ b/src/ipc/signal.c @@ -127,5 +127,5 @@ int kill(Thread *t, pid_t pid, int sig) { if(!dest) return -ESRCH; if(!sig) return 0; // verified that pid exists - return platformSendSignal(t, pid, sig); + return platformSendSignal(t, dest, sig); } \ No newline at end of file