Changes: Stylistic and fix one API call.

This commit is contained in:
Alastair Poole 2019-09-07 11:36:46 +01:00
parent 12ae98cab7
commit 6968d4274e
3 changed files with 9 additions and 7 deletions

1
NEWS
View File

@ -10,6 +10,7 @@ Evisum 0.2.6
* Fix some memory leaks.
* Battery names (where applicable).
* Various small tidying.
* Use Eina helpers where applicable.
============
Evisum 0.2.4

View File

@ -1155,7 +1155,8 @@ system_temperature_cpu_get(void)
void
system_power_state_get(power_t *power)
{
_power_state_get(power);
if (_power_battery_count_get(power))
_power_state_get(power);
}
bool

View File

@ -25,21 +25,21 @@ typedef struct
#define MAX_BATTERIES 10
typedef struct
{
double charge_full;
double charge_current;
double charge_full;
double charge_current;
uint8_t percent;
} bat_t;
typedef struct
{
bool have_ac;
int battery_count;
bool have_ac;
int battery_count;
bat_t **batteries;
char *battery_names[MAX_BATTERIES];
int *bat_mibs[MAX_BATTERIES];
int ac_mibs[5];
int *bat_mibs[MAX_BATTERIES];
int ac_mibs[5];
} power_t;
typedef struct results_t results_t;