Use %d instead of accidentally %i

This commit is contained in:
Aaron Marcher
2018-05-18 19:58:51 +02:00
parent f170028527
commit f317819984
2 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@
snprintf(path, sizeof(path), "%s%s%s", "/sys/class/power_supply/",
bat, "/capacity");
return (pscanf(path, "%i", &perc) == 1) ? bprintf("%d", perc) : NULL;
return (pscanf(path, "%d", &perc) == 1) ? bprintf("%d", perc) : NULL;
}
const char *
@ -62,12 +62,12 @@
if (!strcmp(state, "Discharging")) {
snprintf(path, sizeof(path), "%s%s%s", "/sys/class/power_supply/",
bat, "/charge_now");
if (pscanf(path, "%i", &charge_now) != 1) {
if (pscanf(path, "%d", &charge_now) != 1) {
return NULL;
}
snprintf(path, sizeof(path), "%s%s%s", "/sys/class/power_supply/",
bat, "/current_now");
if (pscanf(path, "%i", &current_now) != 1) {
if (pscanf(path, "%d", &current_now) != 1) {
return NULL;
}