mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-18 11:05:18 +00:00
cosmetic fixup session
- kill trailing whitespace (grep -n ' $' src/*.{c,cc,h}) - eliminate space before tab (grep -n ' ' src/*.{c,cc,h}) (insert tab by pressing CTRL-v first) - little indenting fixup in configure.ac.in (we indent using tabs, not spaces) note: this should not change the actual code at all - if it does, feel free to blame me personally ;)
This commit is contained in:
parent
7d92e46533
commit
6f587402d8
@ -1671,10 +1671,9 @@ void get_battery_stuff(char *buffer, unsigned int n, const char *bat, int item)
|
|||||||
strcpy(present, "no");
|
strcpy(present, "no");
|
||||||
else if (strncmp (buf, "POWER_SUPPLY_STATUS=", 20) == 0)
|
else if (strncmp (buf, "POWER_SUPPLY_STATUS=", 20) == 0)
|
||||||
sscanf(buf, "POWER_SUPPLY_STATUS=%63s", charging_state);
|
sscanf(buf, "POWER_SUPPLY_STATUS=%63s", charging_state);
|
||||||
/* present_rate is not the same as the
|
/* present_rate is not the same as the current flowing now but it
|
||||||
current flowing now but it is the same value
|
* is the same value which was used in the past. so we continue the
|
||||||
which was used in the past. so we continue
|
* tradition! */
|
||||||
the tradition! */
|
|
||||||
else if (strncmp(buf, "POWER_SUPPLY_CURRENT_NOW=", 25) == 0)
|
else if (strncmp(buf, "POWER_SUPPLY_CURRENT_NOW=", 25) == 0)
|
||||||
sscanf(buf, "POWER_SUPPLY_CURRENT_NOW=%d", &present_rate);
|
sscanf(buf, "POWER_SUPPLY_CURRENT_NOW=%d", &present_rate);
|
||||||
else if (strncmp(buf, "POWER_SUPPLY_ENERGY_NOW=", 24) == 0)
|
else if (strncmp(buf, "POWER_SUPPLY_ENERGY_NOW=", 24) == 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user