diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-24 19:12:32 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-24 19:12:32 +0200 |
commit | 8725aebe8e8e8efd8781ec1b1637cb68f943b8bf (patch) | |
tree | 0d2eea782319d11ce30eadfce6cb301008889f63 /src/ft_sfx_footstep.c | |
parent | Works but leaks (diff) | |
download | 42-cub3d-8725aebe8e8e8efd8781ec1b1637cb68f943b8bf.tar.gz 42-cub3d-8725aebe8e8e8efd8781ec1b1637cb68f943b8bf.tar.bz2 42-cub3d-8725aebe8e8e8efd8781ec1b1637cb68f943b8bf.tar.xz 42-cub3d-8725aebe8e8e8efd8781ec1b1637cb68f943b8bf.tar.zst 42-cub3d-8725aebe8e8e8efd8781ec1b1637cb68f943b8bf.zip |
Fine
Diffstat (limited to '')
-rw-r--r-- | src/ft_sfx_footstep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft_sfx_footstep.c b/src/ft_sfx_footstep.c index 5b8fe8a..628660b 100644 --- a/src/ft_sfx_footstep.c +++ b/src/ft_sfx_footstep.c @@ -32,10 +32,10 @@ void if (ref % 2) { if (system(sfx[1].cmd)) - pthread_cancel(pthread_self()); + pthread_exit(NULL); } else if (system(sfx[1].cmd_alt)) - pthread_cancel(pthread_self()); + pthread_exit(NULL); } return (NULL); } |