From: Michael Stapelberg Date: Wed, 11 Jul 2012 17:11:29 +0000 (+0200) Subject: small style fix in src/print_battery_info.c (move comment) X-Git-Tag: 2.6~15 X-Git-Url: https://git.sur5r.net/?p=i3%2Fi3status;a=commitdiff_plain;h=141f45e7928c433ddbfc63c875973448fa2fc0e8 small style fix in src/print_battery_info.c (move comment) --- diff --git a/src/print_battery_info.c b/src/print_battery_info.c index d3a931c..3c33d3e 100644 --- a/src/print_battery_info.c +++ b/src/print_battery_info.c @@ -101,7 +101,8 @@ void print_battery_info(yajl_gen json_gen, char *buffer, int number, const char } } - if (present_rate == -1) /* on some systems POWER_SUPPLY_POWER_NOW does not exist, so we have to calculate it */ + /* on some systems POWER_SUPPLY_POWER_NOW does not exist, so we have to calculate it */ + if (present_rate == -1) present_rate = ((float)voltage / 1000.0) * ((float)current / 1000.0); if ((full_design == -1) || (remaining == -1)) {