diff options
Diffstat (limited to 'src/ft_exit.c')
-rw-r--r-- | src/ft_exit.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/ft_exit.c b/src/ft_exit.c index 1d35ea1..0fcc9dc 100644 --- a/src/ft_exit.c +++ b/src/ft_exit.c @@ -46,16 +46,14 @@ static void if (clist->isoldmus && clist->wlist.inited) { - if (system(FT_SND_TERM_CMD)) - return ; + system(FT_SND_TERM_CMD); } i = -1; while (++i < FT_TOTAL_SFX) { pthread_mutex_unlock(&clist->sfx[i].mutex); + system(FT_SND_TERM_CMD); } - if (system(FT_SND_TERM_CMD)) - return ; } int |