commit 62f057dfcf4a2127b30a288a78ecb29b1dc37348 from: Caleb Stein date: Sat Jun 6 23:40:40 2026 UTC fix bug in cleanup commit - fa6854e34ce5d23dcd1762632a68520b9787e0c5 commit + 62f057dfcf4a2127b30a288a78ecb29b1dc37348 blob - 6b0755d6551bc2ec09f682358ebd2115cbbdc713 blob + a6bd194520be7e434b6dca53811a82eeb66dec09 --- src/main.c +++ src/main.c @@ -316,7 +316,7 @@ main(void) cleanup: (void)puts("Closing statbar"); if (batt_pid > 0) (void)kill(batt_pid, SIGTERM); - if (batt_pid > 0) (void)kill(vol_pid, SIGTERM); + if (vol_pid > 0) (void)kill(vol_pid, SIGTERM); if (network_open) (void)close(network_pfd->fd); if (weather_loc_valid) close_weather(); if (mail_path_valid) close_mail();