wok-current annotate lxpanel/stuff/batt.chg.level.patch @ rev 15695

Fix missing mkdir command
author Stanislas Leduc <shann@slitaz.org>
date Sat Dec 21 11:13:51 2013 +0100 (2013-12-21)
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;