small style fix in src/print_battery_info.c (move comment)

This commit is contained in:
Michael Stapelberg 2012-07-11 19:11:29 +02:00
parent 1271ff2aa4
commit 141f45e792

View File

@ -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)) {