CLCD: fix possible compile error

error: declaration of 'power' shadows a global declaration [-Werror=shadow]
This commit is contained in:
2017-10-29 21:16:01 +01:00
parent eaa8d8be9f
commit 7490497b4e
2 changed files with 3 additions and 3 deletions

View File

@@ -692,14 +692,14 @@ void CLCD::count_down() {
}
}
void CLCD::setlcdparameter(int dimm, const int power)
void CLCD::setlcdparameter(int dimm, const int _power)
{
if(dimm < 0)
dimm = 0;
else if(dimm > 15)
dimm = 15;
if(!power)
if(!_power)
dimm = 0;
if(brightness == dimm)