Change incorrect variable type to unsigned int

This commit is contained in:
Tony Corbett G0WFV
2016-06-30 20:35:32 +01:00
parent 2b5c66ca85
commit 8801355ace
5 changed files with 8 additions and 8 deletions

View File

@@ -875,7 +875,7 @@ void CMMDVMHost::createDisplay()
unsigned int rows = m_conf.getHD44780Rows();
unsigned int columns = m_conf.getHD44780Columns();
std::vector<unsigned int> pins = m_conf.getHD44780Pins();
std::string i2cAddress = m_conf.getHD44780i2cAddress();
unsigned int i2cAddress = m_conf.getHD44780i2cAddress();
bool pwm = m_conf.getHD44780PWM();
unsigned int pwmPin = m_conf.getHD44780PWMPin();
unsigned int pwmBright = m_conf.getHD44780PWMBright();