wok annotate lxpanel/stuff/batt.chg.level.patch @ rev 23899

busybox: add crontabs in CONFIG_FILES
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 28 08:34:55 2020 +0000 (2020-07-28)
parents
children
rev   line source
mojo@12194 1 --- /src/plugins/batt/batt_sys.c.orig
mojo@12194 2 +++ /src/plugins/batt/batt_sys.c
mojo@12194 3 @@ -220,7 +220,7 @@
mojo@12194 4 if (b->last_capacity < MIN_CAPACITY)
mojo@12194 5 b->percentage = 0;
mojo@12194 6 else
mojo@12194 7 - b->percentage = ((float) b->remaining_energy * 100.0) / (float) b->last_capacity_unit;
mojo@12194 8 + b->percentage = ((float) b->remaining_capacity * 100.0) / (float) b->last_capacity;
mojo@12194 9
mojo@12194 10 if (b->percentage > 100)
mojo@12194 11 b->percentage = 100;