mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-11-06 21:55:41 +00:00
power: Fix compilation failure
Change-Id: Ib0923ba5c0976e2d00e6f190b370936a14a9b6df
This commit is contained in:
parent
2879c69f2b
commit
3ecf3c4648
1 changed files with 2 additions and 2 deletions
|
@ -125,7 +125,7 @@ static void sysfs_write(const char *path, char *s)
|
|||
}
|
||||
|
||||
static unsigned int read_panel_brightness() {
|
||||
unsigned int ret = 0;
|
||||
unsigned int i, ret = 0;
|
||||
int read_status;
|
||||
// brightness can range from 0 to 255, so max. 3 chars + '\0'
|
||||
char panel_brightness[4];
|
||||
|
@ -136,7 +136,7 @@ static unsigned int read_panel_brightness() {
|
|||
return -1;
|
||||
}
|
||||
|
||||
for (unsigned int i = 0; i < (sizeof(panel_brightness) / sizeof(panel_brightness[0])); i++) {
|
||||
for (i = 0; i < (sizeof(panel_brightness) / sizeof(panel_brightness[0])); i++) {
|
||||
if (isdigit(panel_brightness[i])) {
|
||||
ret += (panel_brightness[i] - '0');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue