ap

An audio player suited to my tastes
Log | Files | Refs | README | LICENSE

commit 83d3b5fd244124fe4273446aeaad17ce823f3c87
parent a77f5717b0793df077acb7fd05ba6a61c5b12718
Author: Jacob R. Edwards <jacob@jacobedwards.org>
Date:   Mon,  5 Jun 2023 16:20:32 -0700

Don't bother using SIGINT in sigchld() to interrupt

The SIGCHLD which caused sigchld() to be called should be sufficient.

Diffstat:
Maps/main.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/aps/main.c b/aps/main.c @@ -68,7 +68,6 @@ sigchld(int sig) if (pid == aps->player->pid) { aps_log(aps, 0, INFO, logsubjects[LogPlayer], "player status available"); pupdate(aps->player, status); - kill(getpid(), SIGINT); } } }