slstatus

My fork of https://tools.suckless.org/slstatus/
git clone https://git.inz.fi/slstatus
Log | Files | Refs | README | LICENSE

commit aa8654795da19a8d517faf1b84cd4dc4ac75f6e7
parent a546d4b585234f66b82e048c2d7cb228b9e7fea4
Author: Aaron Marcher <me@drkhsh.at>
Date:   Mon, 21 May 2018 00:42:06 +0200

battery_remaining: check for division by zero

Diffstat:
Mcomponents/battery.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/components/battery.c b/components/battery.c @@ -107,6 +107,10 @@ return NULL; } + if (current_now == 0) { + return NULL; + } + timeleft = (double)charge_now / (double)current_now; h = timeleft; m = (timeleft - (double)h) * 60;