diff options
Diffstat (limited to 'src/ft_sfx_pain.c')
-rw-r--r-- | src/ft_sfx_pain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft_sfx_pain.c b/src/ft_sfx_pain.c index baf689b..d55c01c 100644 --- a/src/ft_sfx_pain.c +++ b/src/ft_sfx_pain.c @@ -32,10 +32,10 @@ void if (ref % 3) { if (system(sfx[3].cmd)) - pthread_cancel(pthread_self()); + pthread_exit(NULL); } else if (system(sfx[3].cmd_alt)) - pthread_cancel(pthread_self()); + pthread_exit(NULL); } return (NULL); } |