Skip to content

Commit

Permalink
ipc: fixed invocation to match prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
jewelcodes committed Nov 8, 2024
1 parent 597e27c commit 46bc99e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ipc/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

0 comments on commit 46bc99e

Please sign in to comment.