X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fprint_battery_info.c;h=aaef46eb04d71007c04c6e760aaaaff8ecce4c00;hb=52814295a0b3a0785631256e9e2dc6b8139e2be8;hp=bd3ff5c63de754928a2c255a8fde0fc01954c49a;hpb=bc0bd8c9e03d92ab133f4dfae52dc202c3e0cbf6;p=i3%2Fi3status diff --git a/src/print_battery_info.c b/src/print_battery_info.c index bd3ff5c..aaef46e 100644 --- a/src/print_battery_info.c +++ b/src/print_battery_info.c @@ -292,7 +292,8 @@ void print_battery_info(yajl_gen json_gen, char *buffer, int number, const char } (void)snprintf(statusbuf, sizeof(statusbuf), "%s", BATT_STATUS_NAME(status)); - (void)snprintf(percentagebuf, sizeof(percentagebuf), "%02d%%", apm_info.battery_life); + /* integer_battery_capacity is implied as battery_life is already in whole numbers. */ + (void)snprintf(percentagebuf, sizeof(percentagebuf), "%.00d%%", apm_info.battery_life); if (status == CS_DISCHARGING && low_threshold > 0) { if (strncmp(threshold_type, "percentage", strlen(threshold_type)) == 0