diff options
author | Ingo Feinerer <feinerer@logic.at> | 2021-02-15 12:56:42 +0100 |
---|---|---|
committer | drkhsh <me@drkhsh.at> | 2022-10-26 21:24:16 +0200 |
commit | 3b699c127db745b32002c14d59a6de4ebcc0b7db (patch) | |
tree | 834e56db8ebf6f5924f2e0882b4fb72ac96a9628 | |
parent | 798809ce02528d5954e0b1d524f44c29503a7407 (diff) | |
download | slstatus-3b699c127db745b32002c14d59a6de4ebcc0b7db.tar.gz |
Reset sndiod initialization flag on disconnects
If the connection is lost to the sndiod(8) daemon reset the
initialization to allow for a graceful restart.
-rw-r--r-- | components/volume.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/volume.c b/components/volume.c index 32f7817..c94f872 100644 --- a/components/volume.c +++ b/components/volume.c @@ -161,6 +161,7 @@ if (sioctl_revents(hdl, pfds) & POLLHUP) { warn("sndio: disconnected"); cleanup(); + initialized = 0; return NULL; } } |